Recolor

Recolor

Change the color of the title bar of PWAs on Edge (Chromium)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Recolor",
  "description": "Change the color of the title bar of PWAs on Edge (Chromium)",
  "version": "1.0.0",
  "manifest_version": 2,
  "icons": {
    "16": "icons/recolor-16.png",
    "32": "icons/recolor-32.png",
    "48": "icons/recolor-48.png",
    "128": "icons/recolor-128.png"
  },
  "browser_action": {
    "default_title": "Recolor",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "recolorEngine.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}