Website Theme Sync

Website Theme Sync

Keeps the web page color theme settings in sync with system color theme.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Website Theme Sync",
  "manifest_version": 3,
  "version": "0.1",
  "description": "Keeps the web page color theme settings in sync with system color theme.",
  "icons": {
    "200": "icons/200x200.png",
    "400": "icons/400x400.png",
    "600": "icons/600x600.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.slack.com/*"
      ],
      "js": [
        "slack.js"
      ]
    },
    {
      "matches": [
        "https://*.coderslang.com/*"
      ],
      "js": [
        "coderslang.js"
      ]
    },
    {
      "matches": [
        "https://*.twitter.com/*"
      ],
      "js": [
        "twitter.js"
      ]
    }
  ]
}