Outgoing Link Cleaner

Outgoing Link Cleaner

Removes redirect URL's in Google, Facebook, and Reddit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Outgoing Link Cleaner",
  "version": "1.0.2",
  "description": "Removes redirect URL's in Google, Facebook, and Reddit",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.google.com/*",
        "*://www.facebook.com/*",
        "*://www.reddit.com/*"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "link_cleaner.js"
      ]
    }
  ],
  "permissions": [
    "*://www.google.com/*",
    "*://www.facebook.com/*",
    "*://www.reddit.com/*"
  ],
  "short_name": "Link Cleaner"
}