GCache Browser

Easily Browse Google cached webpages

GCache Browser là gì?

GCache Browser là một tiện ích mở rộng Chrome được phát triển bởi https://gokam.co.uk, và tính năng chính của nó là "Easily Browse Google cached webpages".

Ả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 GCache Browser

Tải xuống các tệp mở rộng GCache Browser 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

                        One click and switch to Google cached webpages browsing. 

If your favorite website is temporarily offline, you can browse it as if nothing happened. 

This extension is very handy for SEO professionals too, as you can see what was a website state last time Googlebot checked. 


Why it's cool: It is possible to switch from one cache page to another by using the page links. demo : https://recordit.co/1iUdG8GX4d



doesn't work on websites with 'nocache' meta data, single app and websites that check their hostname in JS                    

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

Tên GCache Browser GCache Browser
ID bdeeanokiffadihdmojahobnnenikmbn
URL Chính Thức https://chromewebstore.google.com/detail/gcache-browser/bdeeanokiffadihdmojahobnnenikmbn
Mô tả Easily Browse Google cached webpages
Kích Thước Tệp 9.77 KB
Số Lần Cài Đặt 324
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2019-09-30
Ngày Phát Hành 2019-09-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://gokam.co.uk
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GCache Browser",
    "description": "Easily Browse Google cached webpages",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/webcache.googleusercontent.com\/*"
            ],
            "js": [
                "cache.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs"
    ]
}