Link Klipper - Extract all links

Link Klipper - Extract all links

Extract all links on a webpage and export them to a file.

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__",
  "version": "2.7",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "background": {
    "service_worker": "js/Background.js"
  },
  "options_page": "pages/options.html",
  "icons": {
    "16": "images/klipper-small-logo.png",
    "48": "images/klipper-small-logo.png",
    "128": "images/klipper-small-logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/Core.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": "images/klipper-small-logo.png",
    "default_title": "Link Klipper Old: Extract the links of this page to a CSV",
    "default_popup": "pages/popup.html"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ]
}