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.”。

擴展截圖

screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Website Cached View Website Cached View
ID jcbpeilhbmhdlnakgmdnhnallgciiefm
官方網址 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"
    }
}