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
公式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
Eメール [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"
    }
}