LinkBreaker

LinkBreaker

Break those pesky links!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LinkBreaker",
  "version": "1.0.2",
  "description": "Break those pesky links!",
  "browser_action": {
    "default_icon": "images/logo-48.png",
    "default_title": "LinkBreaker"
  },
  "icons": {
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "author": "Daniel and Graham",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "contentscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs"
  ]
}