Custom selection

Custom selection

Instantly customize text selections, enhancing your browsing with personalized colors, shadows, and decorations.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "author": "Pythack",
  "default_locale": "en",
  "version": "2.1.0",
  "description": "__MSG_appDesc__",
  "background": {
    "service_worker": "./background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "action": {
    "default_icon": "./images/icon.png",
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html",
    "browser_style": true
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "./images/icon.png",
        "./images/iconcustom.png",
        "./images/iconvalid.png",
        "./images/iconfail.png",
        "./images/icondisabled.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}