Color Tailor

Color Tailor

Dynamic theme that uses the current website's "primary" color

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Color Tailor",
  "version": "0.3.0",
  "author": "Danny Guo",
  "homepage_url": "https://github.com/dguo/color-tailor",
  "applications": {
    "gecko": {
      "id": "@color-tailor",
      "strict_min_version": "63.0a1"
    }
  },
  "icons": {
    "16": "img/logo-16.png",
    "32": "img/logo-32.png",
    "48": "img/logo-48.png",
    "96": "img/logo-96.png",
    "128": "img/logo-128.png"
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "theme"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}