-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest-v2.json
50 lines (50 loc) · 1.05 KB
/
manifest-v2.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
{
"name": "AzTube Downloader",
"version": "1.2.1",
"description": "Send YouTube Videos to your smartphone",
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": [
"activeTab",
"storage",
"*://www.youtube.com/"
],
"browser_action": {
"default_popup": "index.html"
},
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"*://www.youtube.com/watch*"
],
"js": [
"scripts/lib/browser-polyfill.min.js",
"scripts/config.js",
"scripts/youtube/download.js",
"scripts/util.js",
"scripts/youtube/index.js"
],
"css": [
"styles/youtube/style.css"
]
}
],
"background": {
"scripts": [
"scripts/config.js",
"scripts/lib/browser-polyfill.min.js",
"scripts/util.js",
"scripts/DeviceManager.js",
"scripts/extension/background.js"
],
"browser_specific_settings": {
"gecko": {
"id": "addon@example.com"
}
}
}
}