Inspect and view changes in Bookmark Music Player ++ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Bookmark Music Player ++",
"version": "0.5.0",
"description": "Use your Browser Bookmarks as Youtube™ Playlists",
"author": "jschick",
"permissions": [
"alarms",
"bookmarks",
"storage"
],
"background": {
"page": "src/background/background.html"
},
"browser_action": {
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"64": "images/logo64.png",
"128": "images/logo128.png"
}
},
"icons": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"64": "images/logo64.png",
"128": "images/logo128.png"
},
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"src/content-yt.js"
],
"run_at": "document_idle"
}
]
}