forked from dDab-panda/handsfree
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
98 lines (86 loc) Β· 2.53 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "Handsfree Browser",
"version": "0.0.1",
"description": "A browser extension for using and developing the web handsfree πππ, powered by Handsfree.js",
"manifest_version": 2,
"permissions": ["*://*/*", "storage", "tabs", "activeTab"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"options_page": "/extension/options/stream-capture.html",
"devtools_page": "/extension/devtools/index.html",
"background": {
"scripts": [
"/build/lib/handsfree.js",
"/extension/background/handsfree.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://*/*"],
"exclude_matches": ["*://localhost/*"],
"css": [
"/build/lib/assets/handsfree.css"
],
"js": [
"/build/lib/handsfree.js",
"/extension/content/handsfree-all-frames.js"
],
"all_frames": true,
"run_at": "document_end"
},
{
"matches": ["*://*/*"],
"exclude_matches": ["*://localhost/*"],
"js": [
"/extension/content/handsfree-root-frame.js"
],
"run_at": "document_end"
},
{
"matches": ["https://noisedeck.app/*"],
"js": [
"/extension/sites/noisedeck.app/noisedeck.app.js"
],
"run_at": "document_end"
},
{
"matches": ["https://gacembed.withgoogle.com/blob-opera*"],
"js": ["/extension/sites/blob-opera/blob-opera.js"],
"all_frames": true,
"run_at": "document_end"
},
{
"matches": ["https://stadia.google.com/*"],
"js": ["/extension/sites/stadia.google.com/stadia.js"],
"run_at": "document_end"
},
{
"matches": ["https://teropa.info/musicmouse/*"],
"js": ["/extension/sites/musicmouse/musicmouse.js"],
"run_at": "document_end"
},
{
"matches": ["https://sm64.gitlab.io/*"],
"js": ["/extension/sites/sm64.gitlab.io/sm64.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"/build/lib/handsfree/*"
],
"browser_action": {
"default_popup": "/extension/popup/index.html",
"default_icon": {
"16": "/build/docs/favicon.png",
"32": "/build/docs/favicon.png",
"48": "/build/docs/favicon.png",
"128": "/build/docs/favicon.png"
}
},
"icons": {
"16": "/build/docs/favicon.png",
"32": "/build/docs/favicon.png",
"48": "/build/docs/favicon.png",
"128": "/build/docs/favicon.png"
}
}