-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 614 Bytes
/
Copy pathmanifest.json
File metadata and controls
31 lines (31 loc) · 614 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
27
28
29
30
31
{
"manifest_version": 2,
"name": "GX Music",
"version": "1.0",
"description": "GX Music makes your browser more epic",
"background": {
"scripts": ["background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
],
"web_accessible_resources": [
"res/4_1.ogg",
"res/4_2.ogg",
"res/4_3.ogg",
"res/4_4.ogg",
"res/4_5.ogg"
],
"permissions": ["tabs", "activeTab"],
"browser_action": {
"default_title": "GX Music",
"default_popup": "popout.html"
},
"icons": {
"128": "logo.png"
}
}