Text Link

Text Link

Allows URI texts written in webpages to be loaded by double clicks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "6.1.9",
  "author": "YUKI \"Piro\" Hiroshi",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "clipboardWrite",
    "menus",
    "find",
    "storage"
  ],
  "icons": {
    "32": "resources/icon.png"
  },
  "background": {
    "scripts": [
      "extlib/Configs.js",
      "common/constants.js",
      "common/common.js",
      "common/commonConfigs.js",
      "background/uriMatcher.js",
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "common/constants.js",
        "common/common.js",
        "content_scripts/xpath.js",
        "content_scripts/range.js",
        "content_scripts/content.js"
      ],
      "css": [
        "resources/deactivate-boundary-inline-elements.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "{54BB9F3F-07E5-486c-9B39-C7398B99391C}",
      "strict_min_version": "64.0"
    }
  }
}