Google Old Results

Google Old Results

Cleans up google results by using the old classic style with green links

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Old Results",
  "version": "1.2.2",
  "description": "Cleans up google results by using the old classic style with green links",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "https://google.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "content/google.css"
      ]
    }
  ]
}