Link Inspector

Link Inspector

Inspect, filter, and export hyperlinks contained in a web page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Link Inspector",
  "description": "Inspect, filter, and export hyperlinks contained in a web page.",
  "version": "1.0.0.0",
  "icons": {
    "16": "icons/LinkInspector_16.png",
    "48": "icons/LinkInspector_48.png",
    "128": "icons/LinkInspector_128.png"
  },
  "browser_action": {
    "default_icon": "icons/Chain_no_border_19.png",
    "default_popup": "layout/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/page.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/require.js",
      "js/eventPage.js"
    ],
    "persistent": false
  },
  "options_page": "layout/options.html",
  "permissions": [
    "clipboardWrite"
  ],
  "externally_connectable": {
    "matches": [
      "https://hyperlinkinspector.googlecode.com/*"
    ]
  },
  "offline_enabled": true
}