An extension to randomly play ambient music, such as the music from Minecraft.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Music of Minecraft",
"description": "An extension to randomly play ambient music, such as the music from Minecraft.",
"version": "1.0.1",
"browser_action": {
"default_icon": {
"16": "images/icons/icon_16.png",
"48": "images/icons/icon_48.png",
"128": "images/icons/icon_128.png"
}
},
"icons": {
"16": "images/icons/icon_16.png",
"48": "images/icons/icon_48.png",
"128": "images/icons/icon_128.png"
},
"permissions": [
"storage",
"unlimitedStorage"
],
"options_page": "html/options.html",
"background": {
"scripts": [
"js/es6-promise.auto.min.js",
"js/utils.js",
"js/files.js",
"js/music.js",
"js/main.js"
]
}
}