hyperlinker

hyperlinker

creates hyperlinks from plain text on website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "hyperlinker",
  "description": "creates hyperlinks from plain text on website",
  "version": "2.0.0",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "icons": {
    "48": "assets/images/icon48_disabled.png",
    "128": "assets/images/icon128_disabled.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "name": "Toggle URL activation"
  },
  "commands": {
    "toggle-hyperlink-activation": {
      "suggested_key": {
        "default": "Alt+Shift+H"
      },
      "description": "Toggle URL activation"
    }
  }
}