-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
26 lines (26 loc) · 814 Bytes
/
manifest.json
File metadata and controls
26 lines (26 loc) · 814 Bytes
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
{
"name": "AudioGrabber for AudioSplitter",
"version": "1.0",
"description": "Add everything you watch on youtube into the AudioSplitter tracklist of your choice !",
"manifest_version": 2,
"background": {
"scripts": ["src/background/background.js"],
"persistent": true
},
"browser_action": {
"default_icon": "icon128.png",
"default_popup": "src/popup/popup.html"
},
"content_scripts": [{
"matches": ["https://www.youtube.com/*"],
"js": ["src/content-scripts/parser.js"]
}],
"permissions": [
"storage",
"*://audiosplitter.fm/*"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"icons": { "16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png" }
}