forked from jae-jae/Userscript-Plus
-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathfirefox.json
More file actions
48 lines (48 loc) · 1.07 KB
/
Copy pathfirefox.json
File metadata and controls
48 lines (48 loc) · 1.07 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
42
43
44
45
46
47
48
{
"$schema": "https://json.schemastore.org/webextension.json",
"manifest_version": 2,
"default_locale": "en",
"name": "__MSG_extName__",
"description": "__MSG_extShortDesc__",
"short_name": "userJSPlus",
"background": {
"page": "background.html"
},
"browser_action": {
"browser_style": false,
"default_area": "navbar",
"default_icon": {
"16": "img/icon_16.png",
"32": "img/icon_32.png",
"64": "img/icon_64.png"
},
"default_popup": "popup.html",
"default_title": "UserJS"
},
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"permissions": [
"tabs",
"<all_urls>",
"storage",
"unlimitedStorage",
"webRequest"
],
"browser_specific_settings": {
"gecko": {
"id": "uscriptplus@mol.com",
"strict_min_version": "91.1.0"
}
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"icons": {
"16": "img/userjs.svg",
"32": "img/userjs.svg",
"48": "img/userjs.svg",
"64": "img/userjs.svg",
"96": "img/userjs.svg"
},
"commands": {}
}