Any Link Finder!

Any Link Finder!

Script that helps to find any link by searching your especific word within the link url

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Any Link Finder!",
  "description": "Script that helps to find any link by searching your especific word within the link url",
  "version": "1.4",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Any Link Finder!",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "link_checker.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>"
  ]
}