Inspect and view changes in Bandcamp To Discogs 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Bandcamp To Discogs",
"version": "0.20.0",
"description": "Generates a CSV file for the Bandcamp artist release. The CSV file can be imported into Discogs as a draft.",
"permissions": [
"activeTab",
"storage",
"scripting",
"history"
],
"host_permissions": [
"https://*.bandcamp.com/*"
],
"content_scripts": [
{
"js": [
"bandcamp.content.js"
],
"matches": [
"https://*.bandcamp.com/*"
],
"run_at": "document_end"
},
{
"js": [
"discogs.draft.js"
],
"matches": [
"https://www.discogs.com/release/add",
"https://www.discogs.com/release/edit/*"
],
"run_at": "document_end"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/b2d_logo_16.png",
"32": "images/b2d_logo_32.png",
"48": "images/b2d_logo_48.png",
"128": "images/b2d_logo_128.png"
}
},
"icons": {
"16": "images/b2d_logo_16.png",
"32": "images/b2d_logo_32.png",
"48": "images/b2d_logo_48.png",
"128": "images/b2d_logo_128.png"
},
"web_accessible_resources": [
{
"resources": [
"images/b2d_logo_16.png",
"bandcamp.content.css",
"bandcamp.inject.js"
],
"matches": [
"https://*.bandcamp.com/*"
]
},
{
"resources": [
"discogs.draft.css"
],
"matches": [
"https://www.discogs.com/*"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{71f05980-4023-45c3-8cb0-29dfd4fc1bd4}",
"strict_min_version": "110.0"
}
}
}