URLColors

URLColors

A chrome extension that adds a colored border around websites that match user inputted preferences.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "URLColors",
  "short_name": "URLColors",
  "description": "A chrome extension that adds a colored border around websites that match user inputted preferences.",
  "version": "2.2",
  "manifest_version": 3,
  "host_permissions": [
    "https://*/*"
  ],
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "background": {
    "service_worker": "urlColorsServiceWorker.js"
  },
  "action": {
    "default_popup": "urlColorsPopup.html",
    "default_icon": "urlColorsIcon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "urlColorsContentScript.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "48": "urlColorsIcon.png"
  }
}