-
Notifications
You must be signed in to change notification settings - Fork 16
/
manifestv3.ffx.json
62 lines (62 loc) · 1.56 KB
/
manifestv3.ffx.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
{
"manifest_version": 3,
"name": "Chrome Shack",
"version": "1.78",
"description": "Collection of scripts for Shacknews.",
"browser_specific_settings": {
"gecko": {
"id": "{33a5e61a-ec1e-4761-9515-e7ab23a8b679}",
"strict_min_version": "109.0"
}
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"96": "images/icon96.png",
"128": "images/icon-chrome-web-store.png",
"144": "images/icon144.png"
},
"action": {
"default_icon": "images/icon16.png",
"default_title": "Chrome Shack",
"default_popup": "src/popup.html"
},
"options_ui": {
"page": "src/permissions.html"
},
"background": {
"scripts": ["background.global.js"]
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"content_scripts": [
{
"js": ["content.global.js"],
"css": ["style.css"],
"all_frames": false,
"run_at": "document_end",
"matches": ["https://www.shacknews.com/chatty*"]
}
],
"permissions": ["tabs", "storage", "scripting", "notifications", "alarms"],
"web_accessible_resources": [
{
"matches": ["*://*/*"],
"resources": [
"images/offtopic.png",
"images/political.png",
"images/stupid.png",
"images/interesting.png",
"images/shack.png",
"images/dinogegtik.png",
"images/sparkly1.jpg",
"images/sparkly2.jpg",
"images/sparkly3.jpg",
"images/sparkly4.jpg",
"images/sparkly5.jpg",
"images/sparkly6.jpg"
]
}
]
}