Growtopia Forums Dark Theme

Growtopia Forums Dark Theme

This is an Google Chrome extension that will change the appearance of Growtopia Forums website layout to dark theme.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Growtopia Forums Dark Theme",
  "version": "1.1.0",
  "description": "This is an Google Chrome extension that will change the appearance of Growtopia Forums website layout to dark theme.",
  "icons": {
    "16": "./assets/16.png",
    "32": "./assets/32.png",
    "48": "./assets/48.png",
    "128": "./assets/128.png"
  },
  "permissions": [
    "http://www.growtopiagame.com/*",
    "https://www.growtopiagame.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.growtopiagame.com/*",
        "https://www.growtopiagame.com/*"
      ],
      "js": [
        "index.js"
      ],
      "css": [
        "darkmode.css",
        "default.css"
      ],
      "runAt": "document_start"
    }
  ],
  "web_accessible_resources": [
    "darkmode.css",
    "default.css"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}