Discogs Enhancer

Discogs Enhancer

Adds a dark theme, block sellers, price comparisons, currency converter, configurable quick search, & more to Discogs!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Discogs Enhancer",
  "short_name": "Discogs Enhancer",
  "description": "Adds a dark theme, block sellers, price comparisons, currency converter, configurable quick search, & more to Discogs!",
  "version": "3.6.17",
  "author": "Matthew Salcido",
  "homepage_url": "https://www.discogs-enhancer.com",
  "action": {
    "default_icon": {
      "16": "img/icon_16.png",
      "32": "img/icon_32.png",
      "48": "img/icon_48.png",
      "128": "img/icon_128.png"
    },
    "default_title": "Discogs Enhancer",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.discogs.com/*"
      ],
      "js": [
        "js/extension/user-preferences.js"
      ],
      "css": [
        "css/dark-theme.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "js/extension/background.js"
  },
  "minimum_chrome_version": "88",
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting",
    "storage"
  ],
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "js/extension/dependencies/*",
        "js/extension/features/*"
      ],
      "matches": [
        "*://*.discogs.com/*"
      ]
    }
  ]
}