Website Cached View

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

Cos'è Website Cached View?

Website Cached View è un'estensione di Chrome sviluppata da http://websitecached.com, e la sua funzione principale è "Find cached web pages from Google web cache, the Wayback Machine, and live Version.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Website Cached View

Scarica i file di estensione Website Cached View in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Website Cached View Website Cached View
ID jcbpeilhbmhdlnakgmdnhnallgciiefm
URL Ufficiale https://chrome.google.com/webstore/detail/website-cached-view/jcbpeilhbmhdlnakgmdnhnallgciiefm
Descrizione Find cached web pages from Google web cache, the Wayback Machine, and live Version.
Dimensione del File 16.4 KB
Conteggio Installazioni 282
Versione Corrente 1.0
Ultimo Aggiornamento 2022-05-27
Data di Pubblicazione 2021-04-05
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore http://websitecached.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://websitecached.com
URL della Pagina di Aiuto https://websitecached.com
Lingue Supportate 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"
    }
}