Google Cache Search

Google Cache Search

Quickly view the Google Cache for any web page on any website. Simply click the extension icon from the page you want to check.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Cache Search",
  "description": "Quickly view the Google Cache for any web page on any website. Simply click the extension icon from the page you want to check.",
  "version": "1.0.0",
  "icons": {
    "16": "img/googlecachesearchicon16.png",
    "48": "img/googlecachesearchicon48.png",
    "128": "img/googlecachesearchicon128.png"
  },
  "browser_action": {
    "default_icon": "img/googlecachesearchicon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/background.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs"
  ]
}