Google Search URL Fixup

Google Search URL Fixup

Fix links in the JavaScript-free Google Search results pages to be the original links instead of links that go through Google with tracking identifiers. This is only of interest if you disable JavaScript for Google Search (eg via uMatrix).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Google Search URL Fixup",
  "version": "0.8.4resigned1",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "description": "Fix links in the JavaScript-free Google Search results to be the original links instead of links indirected through Google with tracking identifiers. Among other benefits, this allows your history to work so you can see if you've already visited a search result.",
  "content_scripts": [
    {
      "matches": [
        "*://www.google.com/search?*",
        "*://www.google.ca/search?*",
        "*://www.google.co.uk/search?*",
        "*://www.google.se/search?*",
        "*://www.google.de/search?*"
      ],
      "js": [
        "linkfix.js"
      ]
    }
  ]
}