-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (47 loc) · 1.5 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
{
"background": {
"scripts": [
"scripts/background/Utility.js",
"scripts/global/tune_player.js",
"scripts/background/TownTuneManager.js",
"scripts/background/TimeKeeper.js",
"scripts/background/LoopTimes.js",
"scripts/background/WeatherManager.js",
"scripts/background/KKSongs.js",
"scripts/background/AudioManager.js",
"scripts/background/BadgeManager.js",
"scripts/background/NotificationManager.js",
"scripts/background/StateManager.js",
"scripts/background/MediaSessionManager.js",
"scripts/background/TabAudioHandler.js",
"scripts/background/main.js"
]
},
"browser_action": {
"default_icon": {
"128": "img/icons/status/paused/128.png",
"64": "img/icons/status/paused/64.png",
"32": "img/icons/status/paused/32.png"
},
"default_title": "Animal Crossing Music"
},
"description": "Play Animal Crossing's smooth background music in real-time throughout your day.",
"icons": {
"128": "img/icons/icon/128.png",
"64": "img/icons/icon/64.png",
"32": "img/icons/icon/32.png"
},
"manifest_version": 2,
"name": "Animal Crossing Music",
"options_page": "options.html",
"permissions": [
"notifications",
"storage",
"https://acmusicext.com/"
],
"optional_permissions": [
"background"
],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "4.2.0"
}