GCache Browser
Easily Browse Google cached webpages
What is GCache Browser?
GCache Browser is a Chrome extension developed by https://gokam.co.uk, and its main feature is "Easily Browse Google cached webpages".
Extension Screenshots
Download GCache Browser Extension CRX File
Download GCache Browser extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
One click and switch to Google cached webpages browsing. If your favorite website is temporarily offline, you can browse it as if nothing happened. This extension is very handy for SEO professionals too, as you can see what was a website state last time Googlebot checked. Why it's cool: It is possible to switch from one cache page to another by using the page links. demo : https://recordit.co/1iUdG8GX4d doesn't work on websites with 'nocache' meta data, single app and websites that check their hostname in JS
Extension Basic Information
Name | GCache Browser |
ID | bdeeanokiffadihdmojahobnnenikmbn |
Official URL | https://chromewebstore.google.com/detail/gcache-browser/bdeeanokiffadihdmojahobnnenikmbn |
Description | Easily Browse Google cached webpages |
File Size | 9.77 KB |
Installation Count | 324 |
Current Version | 0.4 |
Last Updated | 2019-09-30 |
Publish Date | 2019-09-30 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://gokam.co.uk |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GCache Browser", "description": "Easily Browse Google cached webpages", "version": "0.4", "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/webcache.googleusercontent.com\/*" ], "js": [ "cache.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "tabs" ] } |