Link Tweak

Link Tweak

Rewrite link url (href attribute of A tag) with flexible rules.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Link Tweak",
  "version": "1.1.2",
  "description": "Rewrite link url (href attribute of A tag) with flexible rules.",
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "page": "index.html"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "Content.js"
      ]
    }
  ]
}