-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.tsx
37 lines (36 loc) · 1.49 KB
/
popup.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
function IndexPopup() {
return (
<html lang="en">
<head>
<meta charSet="UTF-8" />
<title>No Google Search Auto Translation</title>
<style>
{`
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 14px;
line-height: 1.5;
margin: 6px;
width: 340px;
}
h1 {
font-size: 20px;
font-weight: 600;
}
p {
font-size: 16px;
font-weight: 400;
}
`}
</style>
</head>
<body>
<h1>No Google Search Auto Translation</h1>
<p>This extension disables the auto translation feature of Google Search results. It also auto redirect to the original website if the Google Translate proxy is detected.</p>
<p>If not working, please check first that you approved the websites access permissions in the extension settings. Check help pages for <a href="https://support.mozilla.org/en-US/kb/manage-optional-permissions-extensions">Firefox</a> and <a href="https://support.google.com/chrome_webstore/answer/2664769">Chrome</a>. <small>If you are using a Chromium browser, you should be able to follow the Chrome help page.</small></p>
<p>Any request, feedback or bug report can be shared on <a href="https://github.com/lnoss/no-google-search-translation/">GitHub</a>.</p>
</body>
</html>
)
}
export default IndexPopup;