Text Link webext

Text Link webext

You can open URLs that are not linked with double click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Nekoziroo",
  "manifest_version": 2,
  "name": "Text Link webext",
  "version": "1.1.1resigned1",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "icons": {
    "48": "resources/icon.svg"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "options_ui": {
    "page": "options/options.html"
  }
}