forked from magicoflolis/Userscript-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchrome.json
More file actions
43 lines (43 loc) · 1017 Bytes
/
Copy pathchrome.json
File metadata and controls
43 lines (43 loc) · 1017 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
35
36
37
38
39
40
41
42
43
{
"manifest_version": 2,
"default_locale": "en",
"name": "__MSG_extName__",
"description": "__MSG_extShortDesc__",
"content_scripts": [
{
"all_frames": true,
"js": ["/js/sleazyfork.js"],
"matches": ["https://greasyfork.org/*/scripts/*", "https://sleazyfork.org/*/scripts/*"],
"run_at": "document_end"
}
],
"browser_action": {
"browser_style": false,
"default_icon": "img/icon_128.png",
"default_title": "UserJS Popup",
"default_popup": "popup.html"
},
"options_ui": {
"browser_style": false,
"page": "options.html",
"open_in_tab": true
},
"background": {
"page": "background.html"
},
"content_security_policy": "script-src 'self'; object-src 'self'",
"icons": {
"16": "img/icon_16.png",
"32": "img/icon_32.png",
"96": "img/icon_96.png",
"128": "img/icon_128.png"
},
"permissions": [
"activeTab",
"tabs",
"<all_urls>",
"storage",
"unlimitedStorage"
],
"short_name": "uScriptPlus"
}