-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
33 lines (33 loc) · 850 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
{
"name": "ComfyFlix",
"version": "4.0.0",
"manifest_version": 2,
"description": "ComfyFlix clicks the count down timer between episodes on Netflix for you. No Setup needed.",
"homepage_url": "https://github.com/malexanderboyd/ComfyFlix",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"options_page": "src/options/index.html",
"page_action": {
"default_icon": "icons/icon19.png",
"default_title": "ComfyFlix",
"default_popup": "src/page_action/page_action.html"
},
"permissions": [
"https://www.netflix.com/*",
"http://www.netflix.com/*"
],
"content_scripts": [
{
"matches": [
"http://www.netflix.com/*",
"https://www.netflix.com/*"
],
"js": ["src/inject/inject.js"],
"run_at": "document_end"
}
]
}