Recolor Links

Recolor Links

Elevate web accessibility by changing the color of visited links. Improve web browsing experience with a better color contrast.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Recolor Links",
  "description": "Elevate web accessibility by changing the color of visited links. Improve web browsing experience with a better color contrast.",
  "version": "0.1.1",
  "manifest_version": 3,
  "icons": {
    "16": "images/logo-16x16.png",
    "48": "images/logo-48x48.png",
    "128": "images/logo-128x128.png"
  },
  "action": {
    "default_popup": "dist/index.html",
    "default_icon": {
      "16": "images/logo-16x16.png",
      "48": "images/logo-48x48.png",
      "128": "images/logo-128x128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "dist/scripts/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "dist/scripts/background.js"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "homepage_url": "https://softwarehow.com",
  "author": "Zhuoer Wang & SoftwareHow"
}