Inspect and view changes in Bandcamp Dig 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
{
"manifest_version": 2,
"name": "Bandcamp Dig",
"version": "1.4.21",
"description": "Maintains a playlist of all the songs you intend to listen to on Bandcamp.",
"icons": {
"48": "icons/icon-48.png?",
"96": "icons/icon-96.png?"
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": {
"48": "icons/icon-48.png"
},
"default_popup": "popup.html",
"default_title": "Click me!"
},
"content_scripts": [
{
"matches": [
"*://*.bandcamp.com/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
},
{
"matches": [
"*://bandcampdig.dirkdirk.com/*"
],
"js": [
"website.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "bandcampdig_live@dirkdirk.com",
"strict_min_version": "58.0"
}
}
}