-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
30 lines (30 loc) · 1.08 KB
/
popup.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Incognito Tab Mover</title>
<link href="popup.css" rel="stylesheet" type="text/css"> <!-- If you have external CSS -->
</head>
<body>
<h3>Incognito Tab Mover</h3>
<div id="shortcutGuide">
<p id="shortcutInfo">Use Alt+M to move tabs</p>
</div>
<div id="incognitoGuide">
<strong>To use this extension, you must enable "Allow in Incognito" mode:</strong>
<ol>
<li>Open <code>chrome://extensions/</code></li>
<li>Find <b>Incognito Tab Mover</b> and click <b>Details</b></li>
<li>Toggle on <b>“Allow in incognito”</b></li>
</ol>
<p class="warning">Enabling this extension in Incognito mode allows it to operate fully, ensuring functionality and
privacy.</p>
</div>
<div id="supportText">
<p>If you've found my work helpful or valuable, please consider supporting me by buying me a coffee.</p>
<a class="coffee-link" href="https://www.buymeacoffee.com/rohit.wadhwa" target="_blank">Buy Rohit Wadhwa a
Coffee</a>
</div>
<script src="popup.js"></script>
</body>
</html>