forked from lkucharczyk/FANDOM-d-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 941 Bytes
/
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
{
"applications": {
"gecko": {
"id": "FANDOM-d-import@addon"
}
},
"name": "Customize Discussions",
"version": "1.4",
"description": "Imports custom JavaScript and CSS into all Discussions on Fandom",
"content_scripts": [
{
"run_at" :"document_end",
"matches": [
"*://*.fandom.com/d*",
"*://*.fandom.com/f*"
],
"js": [
"js/import.js"
]
}
],
"permissions": [
"activeTab",
"storage"
],
"icons": {
"16": "img/logo16.png",
"48": "img/logo48.png",
"128": "img/logo128.png"
},
"options_ui": {
"page": "html/options.html",
"open_in_tab": false
},
"web_accessible_resources": [
"lib/jquery-3.3.1.min.js"
],
"manifest_version": 2
}