GCache Browser
Easily Browse Google cached webpages
什么是GCache Browser?
GCache Browser是由https://gokam.co.uk开发的Chrome扩展程序,该扩展的主要功能是“Easily Browse Google cached webpages”。
扩展截图
下载GCache Browser扩展crx文件
下载GCache Browser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | GCache Browser |
ID | bdeeanokiffadihdmojahobnnenikmbn |
官方URL | https://chromewebstore.google.com/detail/gcache-browser/bdeeanokiffadihdmojahobnnenikmbn |
简介 | Easily Browse Google cached webpages |
文件大小 | 9.77 KB |
安装次数 | 324 |
当前版本 | 0.4 |
更新时间 | 2019-09-30 |
上架时间 | 2019-09-30 |
评分 | 5.00/5 共2次评分 |
开发者 | https://gokam.co.uk |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |