Board Game Geek Classic Theme Extension

Board Game Geek Classic Theme Extension

This extension changes the new theme back to the classic look that most people love. If you have some ideas or feedback for this…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Board Game Geek Classic Theme Extension",
  "version": "1.6",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://boardgamegeek.com/*",
        "http://boardgamegeek.com/*"
      ],
      "css": [
        "mystyles.css"
      ],
      "js": [
        "adjust.js"
      ],
      "run_at": "document_end"
    }
  ]
}