forked from jae-jae/Userscript-Plus
-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpopup.html
More file actions
41 lines (39 loc) · 1.31 KB
/
Copy pathpopup.html
File metadata and controls
41 lines (39 loc) · 1.31 KB
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
38
39
40
41
<!doctype html>
<html class="webext-page" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title data-i18n="extName"></title>
<link rel="stylesheet" href="css/magicuserjs.css" />
<link rel="stylesheet" href="css/web-ext.css" />
<link rel="shortcut icon" type="image/png" href="img/icon_64.png" />
</head>
<body class="webext-page">
<mujs-root>
<mujs-main class="main webext-page">
<mujs-toolbar></mujs-toolbar>
<mujs-header
><mujs-url
><input
class="mujs-url-bar"
autocomplete="off"
spellcheck="false"
type="text"
placeholder="search_placeholder" /></mujs-url
><mujs-column class="rate-container"></mujs-column
><mujs-column class="counter-container"></mujs-column
><mujs-column class="btn-frame"></mujs-column
></mujs-header>
<mujs-body>
<table>
<thead></thead>
<tbody></tbody>
</table>
<mujs-row class="mujs-cfg hidden webext-page"></mujs-row>
</mujs-body>
<mujs-row class="mujs-footer"></mujs-row>
</mujs-main>
</mujs-root>
<script src="js/popup.js" type="module"></script>
</body>
</html>