Website Cached View

Find cached web pages from Google web cache, the Wayback Machine, and live Version.

Website Cached View là gì?

Website Cached View là một tiện ích mở rộng Chrome được phát triển bởi http://websitecached.com, và tính năng chính của nó là "Find cached web pages from Google web cache, the Wayback Machine, and live Version.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Website Cached View

Tải xuống các tệp mở rộng Website Cached View dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Website Cached View Website Cached View
ID jcbpeilhbmhdlnakgmdnhnallgciiefm
URL Chính Thức https://chrome.google.com/webstore/detail/website-cached-view/jcbpeilhbmhdlnakgmdnhnallgciiefm
Mô tả Find cached web pages from Google web cache, the Wayback Machine, and live Version.
Kích Thước Tệp 16.4 KB
Số Lần Cài Đặt 282
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-05-27
Ngày Phát Hành 2021-04-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://websitecached.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://websitecached.com
URL Trang Trợ Giúp https://websitecached.com
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}