GCache Browser

Easily Browse Google cached webpages

GCache Browser क्या है?

GCache Browser https://gokam.co.uk द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily Browse Google cached webpages"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GCache Browser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम GCache Browser GCache Browser
ID bdeeanokiffadihdmojahobnnenikmbn
आधिकारिक URL https://chromewebstore.google.com/detail/gcache-browser/bdeeanokiffadihdmojahobnnenikmbn
विवरण Easily Browse Google cached webpages
फ़ाइल का आकार 9.77 KB
स्थापना संख्या 324
वर्तमान संस्करण 0.4
अंतिम अपडेट 2019-09-30
प्रकाशन तिथि 2019-09-30
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर https://gokam.co.uk
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}