GCache Browser
Easily Browse Google cached webpages
Qu'est-ce que GCache Browser ?
GCache Browser est une extension Chrome développée par https://gokam.co.uk, et sa fonction principale est "Easily Browse Google cached webpages".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GCache Browser
Téléchargez les fichiers d'extension GCache Browser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | GCache Browser |
ID | bdeeanokiffadihdmojahobnnenikmbn |
URL Officiel | https://chromewebstore.google.com/detail/gcache-browser/bdeeanokiffadihdmojahobnnenikmbn |
Description | Easily Browse Google cached webpages |
Taille du Fichier | 9.77 KB |
Nombre d'Installations | 324 |
Version Actuelle | 0.4 |
Dernière Mise à Jour | 2019-09-30 |
Date de Publication | 2019-09-30 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | https://gokam.co.uk |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |