-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
35 lines (35 loc) · 950 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "FanfictionUltimate",
"short_name": "FFUltimate",
"version": "1.0.0",
"manifest_version": 2,
"description": "The ultimate Chrome Extension for the best Fanfiction.net experience.",
"background": {
"scripts": [
"background.js"
]
},
"homepage_url": "https://anupya.github.io",
"content_scripts": [{
"js": ["CS_buttons.js"],
"matches": ["*://www.fanfiction.net/s/*"],
"run_at": "document_start"
}],
"default_locale": "en",
"browser_action": {
"default_icon": "icon_128.jpeg",
"default_title": "FanFictionUltimate"
},
"icons": {
"16": "icon_16.jpeg",
"48": "icon_48.jpeg",
"128": "icon_128.jpeg"
},
"permissions": [
"unlimitedStorage",
"tabs",
"*://www.fanfiction.net/*",
"chrome://favicon/"
]
}