GCache Browser
Easily Browse Google cached webpages
Vad är GCache Browser?
GCache Browser är en Chrome-tillägg utvecklad av https://gokam.co.uk, och dess huvudfunktion är "Easily Browse Google cached webpages".
Tilläggsskärmbilder
Ladda ner GCache Browser-förlängningens CRX-fil
Ladda ner GCache Browser-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | GCache Browser |
ID | bdeeanokiffadihdmojahobnnenikmbn |
Officiell webbadress | https://chromewebstore.google.com/detail/gcache-browser/bdeeanokiffadihdmojahobnnenikmbn |
Beskrivning | Easily Browse Google cached webpages |
Filstorlek | 9.77 KB |
Antal Installationer | 324 |
Aktuell Version | 0.4 |
Senast Uppdaterad | 2019-09-30 |
Publiceringsdatum | 2019-09-30 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | https://gokam.co.uk |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |