Dereferrer Browser Plugin

Dereferrer Browser Plugin

Hide your referrer (default via http://anonym.to) if you click on an external link.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_title": "__MSG_browser_action_title__",
    "default_icon": "img/16x16.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/16x16.png",
    "32": "img/32x32.png",
    "48": "img/48x48.png"
  },
  "background": {
    "scripts": [
      "js/pref_default.js",
      "js/pref.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/pref_default.js",
        "js/pref.js",
        "js/content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "manifest_version": 2,
  "minimum_chrome_version": "16.0",
  "incognito": "spanning",
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "0.1",
  "homepage_url": "http://www.naden.de",
  "default_locale": "en"
}