forked from animeshkundu/youtube-audio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
50 lines (50 loc) · 1.02 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
45
46
47
48
49
50
{
"name": "Youtube Audio Reworked",
"version": "1",
"manifest_version": 2,
"description": "Stream only Audio on Youtube",
"homepage_url": "https://github.com/ColoursofOSINT/youtube-audio-reworked",
"icons": {
"38": "img/icon38.png",
"128": "img/icon128.png"
},
"background": {
"scripts": [
"js/global.js"
]
},
"permissions": [
"tabs",
"webRequest",
"*://*.youtube.com/*",
"*://*.ggpht.com/*",
"*://*.googlevideo.com/*",
"*://i.ytimg.com/*",
"webRequestBlocking",
"storage"
],
"browser_action": {
"default_title": "Youtube Audio Reworked"
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"*://*.youtube.com/*",
"*://*.youtube-nocookie.com/*"
],
"js": [
"js/youtube_audio.js"
],
"css": [
"css/youtube_audio.css"
],
"run_at": "document_start"
}
],
"options_ui": {
"page": "html/options.html",
"browser_style": true,
"chrome_style": true
}
}