Website Cached View
Find cached web pages from Google web cache, the Wayback Machine, and live Version.
What is Website Cached View?
Website Cached View is a Chrome extension developed by http://websitecached.com, and its main feature is "Find cached web pages from Google web cache, the Wayback Machine, and live Version.".
Extension Screenshots
Download Website Cached View Extension CRX File
Download Website Cached View 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
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.
Extension Basic Information
Name | |
ID | jcbpeilhbmhdlnakgmdnhnallgciiefm |
Official URL | https://chrome.google.com/webstore/detail/website-cached-view/jcbpeilhbmhdlnakgmdnhnallgciiefm |
Description | Find cached web pages from Google web cache, the Wayback Machine, and live Version. |
File Size | 16.4 KB |
Installation Count | 282 |
Current Version | 1.0 |
Last Updated | 2022-05-27 |
Publish Date | 2021-04-05 |
Rating | 5.00/5 Total 1 Ratings |
Developer | http://websitecached.com |
[email protected] | |
Payment Type | free |
Extension Website | https://websitecached.com |
Help Page URL | https://websitecached.com |
Supported Languages | 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" } } |