Link Finder

Link Finder

This extension finds links on a page and groups them by extension.

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 Finder",
  "short_name": "Link Finder",
  "version": "1.0.1",
  "description": "This extension finds links on a page and groups them by extension.",
  "offline_enabled": true,
  "author": "João Lourenço",
  "homepage_url": "http://lourenco.co.za/blog/projects/google-chrome-extensions/link-finder/",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "page_action": {
    "default_icon": "images/page_action_icon.png",
    "default_popup": "popup.html"
  }
}