Link grabber pro

Link grabber pro

Extract links from various website and also analyse it!

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 grabber pro",
  "version": "1.1",
  "description": "Extract links from various website and also analyse it!",
  "browser_action": {
    "default_title": "Manage your links",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "128": "128.png"
  },
  "permissions": [
    "activeTab",
    "<all_urls>",
    "storage",
    "notifications",
    "contextMenus",
    "clipboardWrite",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  }
}