Thememaker

Thememaker

Generate random themes (color schemes) for any website! Are you bored with how your favorite website looks and wish you could…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Thememaker",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/index.js",
        "src/thememaker.js",
        "src/config.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}