any-peek

peek any web page from the top icon

Cos'è any-peek?

any-peek è un'estensione di Chrome sviluppata da rotagi37, e la sua funzione principale è "peek any web page from the top icon".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione any-peek

Scarica i file di estensione any-peek 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

                        peek any web page from the top icon                    

Informazioni di Base sull'Estensione

Nome any-peek any-peek
ID oiejnoljaonlcfbccehcbkkhabhklipe
URL Ufficiale https://chrome.google.com/webstore/detail/oiejnoljaonlcfbccehcbkkhabhklipe
Descrizione peek any web page from the top icon
Dimensione del File 159 KB
Conteggio Installazioni 10
Versione Corrente 2.0.5.8
Ultimo Aggiornamento 2019-10-04
Data di Pubblicazione 2019-10-04
Sviluppatore rotagi37
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "any-peek",
    "manifest_version": 2,
    "version": "2.0.5.8",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png"
    },
    "permissions": [
        "history",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "\/bg.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon.png",
            "32": "icon.png",
            "48": "icon.png"
        },
        "default_title": "Peek Any page",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [],
            "js": [
                "jquery-3.2.1.min.js",
                "cscript.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}