GamdoMizer

GamdoMizer

Change the appearance of Gamdom.com and have rain announced! And more cool futures!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GamdoMizer",
  "description": "Change the appearance of Gamdom.com and have rain announced! And more cool futures!",
  "version": "2.0.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "page_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html",
    "default_title": "GamdoMizer"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://gamdom.com/*"
      ],
      "js": [
        "content.js",
        "jquery-3.2.1.min.js",
        "rain.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://gamdom.com/*",
    "notifications"
  ]
}