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
|
{
"manifest_version": 2,
"name": "Interactive BGM",
"version": "1.0",
"description": "Adds background music to your browsing.",
"permissions": [
"activeTab",
"nativeMessaging",
"notifications",
"storage",
"tabs"
],
"applications": {
"gecko": {
"id": "interactive_bgm@florrie.ed1.club",
"strict_min_version": "50.0"
}
},
"browser_action": {
"default_icon": "icons/beasts-32.png",
"default_title": "Interactive BGM",
"default_popup": "popup/index.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["interactive-bgm.js"]
}
],
"background": {
"page": "background.html"
}
}
|