-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 789 Bytes
/
Copy pathmanifest.json
File metadata and controls
33 lines (33 loc) · 789 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
{
"manifest_version": 3,
"name": "PukiWiki Editor",
"version": "1.0.0",
"description": "Make PukiWiki more comfortable.",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"permissions": ["storage"],
"action": {
"default_title": "PukiWiki Editor",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://ppwww.phys.sci.kobe-u.ac.jp/*?cmd=edit*"],
"css": ["style.css"],
"js": [
"packages/jquery-3.6.0.min.js",
"packages/encoding.min.js",
"packages/autosize.min.js",
"api/euc-jp.js",
"api/serialize.js",
"api/ajax.js",
"reload.js",
"setup.js",
"pukiwiki-editor-main.js"
]
}
]
}