-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
47 lines (46 loc) · 1.04 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
{
"manifest_version": 2,
"name": "Sanchaar",
"version": "1.0.0",
"description": "Sanchaar",
"icons":
{
"16": "img/icon.png",
"48": "img/icon.png",
"128": "img/icon.png"
},
"background":
{
"scripts": ["js/libraries/ponyfill.min.js", "js/libraries/StreamSaver.min.js", "js/background.js"],
"persistent": true
},
"browser_action":
{
"default_icon": "img/icon.png",
"default_title": "Sanchaar",
"default_popup": "html/popup.html"
},
"content_scripts":
[
{
"matches": ["<all_urls>"],
"js": ["js/detect.js"],
"run_at": "document_start"
}
],
"permissions":
[
"contextMenus",
"tabs",
"notifications",
"webRequest",
"webRequestBlocking",
"storage",
"http://*/*",
"https://*/*"
],
"default_locale": "en",
"web_accessible_resources": [
"html/camera.html","html/sources.html","js/libraries/ffmpeg.js", "css/content.css","js/sources.js", "js/libraries/plyr.min.js", "js/libraries/StreamSaver.min.js", "css/libraries/plyr.min.css", "js/audiosources.js", "html/audiosources.html"
]
}