Website Cached View
Find cached web pages from Google web cache, the Wayback Machine, and live Version.
什么是Website Cached View?
Website Cached View是由http://websitecached.com开发的Chrome扩展程序,该扩展的主要功能是“Find cached web pages from Google web cache, the Wayback Machine, and live Version.”。
扩展截图
下载Website Cached View扩展crx文件
下载Website Cached View扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Find cached web pages from Google web cache, the Wayback Machine, and live Version. Right-click on any link or page to view the Wayback Machine or Google Cached pages.
Web Cache Viewer lets you right-click on any link or page to view the Wayback Machine or Google Cache versions of that page. 扩展基本信息
| 名称 | |
| ID | jcbpeilhbmhdlnakgmdnhnallgciiefm |
| 官方URL | https://chrome.google.com/webstore/detail/website-cached-view/jcbpeilhbmhdlnakgmdnhnallgciiefm |
| 简介 | Find cached web pages from Google web cache, the Wayback Machine, and live Version. |
| 文件大小 | 16.4 KB |
| 安装次数 | 282 |
| 当前版本 | 1.0 |
| 更新时间 | 2022-05-27 |
| 上架时间 | 2021-04-05 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | http://websitecached.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://websitecached.com |
| 帮助页面URL | https://websitecached.com |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Website Cached View",
"description": "Find cached web pages from Google web cache, the Wayback Machine, and live Version.",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"contextMenus"
],
"action": {
"default_icon": {
"16": "\/images\/icon_16.png",
"32": "\/images\/icon_32.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
}
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"icons": {
"16": "\/images\/icon_16.png",
"32": "\/images\/icon_32.png",
"48": "\/images\/icon_48.png",
"128": "\/images\/icon_128.png"
}
} | |