-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
34 lines (34 loc) · 697 Bytes
/
popup.html
File metadata and controls
34 lines (34 loc) · 697 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<style>
html,body {
margin: 0;
padding: 0;
border: 0;
width: 540px;
height: 360px;
}
textarea {
box-sizing: border-box;
width: 100%;
height: 100%;
font-family: monospace;
font-size: 100%;
resize: none;
overflow: auto;
}
</style>
</head>
<body>
<textarea
autofocus
wrap='off'
id='shynur-webaddon-pagehook-codearea'
placeholder='// 写下你希望该网站每次打开时运行的 JavaScript 代码...'
></textarea>
</body>
<script src='dist/popup.mjs' type='module'></script>
</html>