-
Notifications
You must be signed in to change notification settings - Fork 53
/
manifest.json
68 lines (68 loc) · 1.82 KB
/
manifest.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "__MSG_extName__",
"short_name": "Stylish",
"version": "1.7.6",
"description": "__MSG_description__",
"homepage_url": "https://userstyles.org",
"manifest_version": 2,
"icons": {
"128": "images/128.png"
},
"permissions": [
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"contextMenus",
"storage",
"*://*/*"
],
"optional_permissions": [
"downloads"
],
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"background": {
"scripts": ["uaparser/uaparser.js", "src/utils.js", "src/refilter.js", "src/messaging.js", "src/storage-websql.js", "src/storage.js", "src/analyticsMain.js", "src/background.js"]
},
"commands": {
"openManage": {
"description": "__MSG_openManage__"
},
"styleDisableAll": {
"description": "__MSG_disableAllStyles__"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"run_at": "document_start",
"all_frames": true,
"js": ["src/inject/apply.js"]
},
{
"matches": ["http://userstyles.org/*", "https://userstyles.org/*"],
"run_at": "document_end",
"all_frames": false,
"js": ["src/inject/install.js"]
},
{
"matches": ["http://userstyles.org/**?autofb", "https://userstyles.org/**?autofb"],
"run_at": "document_end",
"all_frames": false,
"js": ["src/inject/auto-feedback-forward.js"]
}
],
"web_accessible_resources": [
"images/128.png"
],
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCr3yiiN7TIDoaEvh7W34g5YsxfUIGkvVUylq9bm29v8EzULCNIpi74KOBrvprYB6/YAdLjvYmGya1CJfgkuQy3/rZ7gGLSrDk9B1qgsHurhNaCJ0ogfSR50bfYUp0qJlIAgBgZWrVWLogfXbU8x+LFgV8pdMjFuWJgzketxjP6nwIDAQAB",
"options_page": "manage.html",
"browser_action": {
"default_icon": {
"128": "images/128w.png"
},
"default_title": "Stylish",
"default_popup": "popup.html"
},
"default_locale": "en"
}