forked from jae-jae/Userscript-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (30 loc) · 810 Bytes
/
Copy pathmanifest.json
File metadata and controls
34 lines (30 loc) · 810 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
{
"manifest_version": 2,
"name": "Userscript+ for Tampermonkey",
"description": "Show current site all UserJS,The easier way to install UserJs for Tampermonkey.",
"version": "1.2",
"author": "Jaeger <JaegerCode@gmail.com>",
"icons": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"96": "images/icon_96.png",
"128": "images/icon_128.png"
},
"browser_action": {
"default_icon": {
"16": "images/icon_16.png",
"32": "images/icon_32.png",
"96": "images/icon_96.png",
"128": "images/icon_128.png"
},
"default_popup": "popup.html"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"permissions": [
"tabs",
"*://*/*"
]
}