Discogs Diggr

Discogs Diggr

shows videos next to the releases on a store's page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Discogs Diggr",
  "description": "shows videos next to the releases on a store's page",
  "version": "0.1.1",
  "manifest_version": 3,
  "icons": {
    "128": "./assets/diggr-logo.png"
  },
  "options_page": "./src/html/options.html",
  "browser_action": {
    "default_popup": "./src/html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.discogs.com/*seller/*/profile*"
      ],
      "js": [
        "./src/js/foreground.js"
      ],
      "run_at": "document_idle"
    }
  ]
}