-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
81 lines (74 loc) · 1.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "2.1.8",
"author": "DragonOfMath",
"homepage_url": "https://github.com/DragonOfMath/fa-blacklist-webext",
"default_locale": "en",
"icons": {
"32": "static/fabl-128.png",
"64": "static/fabl-128.png",
"128": "static/fabl-128.png"
},
"background": {
"scripts": [
"lib/core/prototype.js",
"lib/browser/browser-polyfill.js",
"lib/browser/i18n.js",
"lib/browser/context-menu.js",
"lib/browser/messenger.js",
"lib/browser/storage.js",
"lib/browser/notify.js",
"lib/fa/filter.js",
"lib/main.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"*://*.furaffinity.net/*"
],
"run_at": "document_end",
"js": [
"lib/core/prototype.min.js",
"lib/core/prototype-extension.js",
"lib/browser/browser-polyfill.js",
"lib/browser/i18n.js",
"lib/browser/messenger.js",
"lib/page/drag-handler.js",
"lib/fa/filter.js",
"lib/fa/target-base.js",
"lib/fa/target-extension.js",
"lib/fa/scraper.js",
"lib/list.js",
"lib/page.js"
],
"css": [
"lib/styles/app.css",
"lib/styles/tag.css",
"lib/styles/list.css",
"lib/styles/page.css"
]
}
],
"browser_action": {
"default_icon": {
"32": "static/fabl-32.png"
},
"default_title": "FA Blacklist",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html"
},
"permissions": [
"<all_urls>",
"contextMenus",
"notifications",
"storage", "unlimitedStorage",
"tabs"
],
"content_security_policy": "script-src 'self'; object-src 'self'; img-src 'self'"
}