-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (44 loc) · 1.07 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
{
"manifest_version": 2,
"name": "Fur Affinity Plus",
"version": "1.0.0",
"description": "Minor enhancements to improve the user experience of browsing furaffinity.net",
"icons": {
"48": "FAPlusIcon_48.png",
"128": "FAPlusIcon_128.png"
},
"background": {
"scripts": ["options.js", "background.js"]
},
"page_action": {
"default_icon": "FAIcon.png",
"default_title": "Click to open all submissions"
},
"content_scripts": [
{
"matches": [
"http://*.furaffinity.net/msg/submissions*",
"https://*.furaffinity.net/msg/submissions*"
],
"css": ["content_script_styles.css"],
"js": ["options.js", "submissions_content_script.js"]
},
{
"matches": [
"http://*.furaffinity.net/view*",
"https://*.furaffinity.net/view*"
],
"js": ["options.js", "view_content_script.js"]
}
],
"options_ui": {
"page": "options_page.html",
"chrome_style": true
},
"permissions": [
"storage",
"tabs",
"http://*.furaffinity.net/*",
"https://*.furaffinity.net/*"
]
}