Text Linky Tool

Text Linky Tool

A useful tool for web links. Features: Copy as plain text. Copy as HTML source. Copy Link Name & URLs. Copy Tab Name & URLs. Analyze image/page URLs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Text Linky Tool",
  "version": "1.2.11",
  "author": "Yuki GUO",
  "homepage_url": "https://addons.mozilla.org/addon/text-linky-tool",
  "developer": {
    "name": "Yuki GUO",
    "url": "https://github.com/Yukisama/TextLinkyTool"
  },
  "applications": {
    "gecko": {
      "id": "{3efee51a-7d3b-4412-a889-addc6ff6276b}",
      "strict_min_version": "56.0"
    }
  },
  "description": "A useful tool for web links.\nFeatures:\nCopy as plain text.\nCopy as HTML source.\nCopy Link Name & URLs.\nCopy Tab Name & URLs.\nAnalyze image/page URLs.",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "96": "icons/icon96.png"
  },
  "permissions": [
    "<all_urls>",
    "menus",
    "contextMenus",
    "tabs",
    "activeTab",
    "clipboardWrite",
    "storage"
  ],
  "background": {
    "scripts": [
      "common.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "common.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "web_accessible_resources": [
    "_locales/*.json"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png"
    },
    "default_title": "Text Linky Tool"
  },
  "commands": {
    "command_action": {
      "suggested_key": {
        "default": "F8"
      }
    }
  }
}