Tablockify

Prevent your tab to be closed or reloaded

Cos'è Tablockify?

Tablockify è un'estensione di Chrome sviluppata da Erik Häyry, e la sua funzione principale è "Prevent your tab to be closed or reloaded".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tablockify

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

                        Prevent a tab from being closed closed or reloaded. Just right click anywhere on the page and select "Lock tab" from the menu. Also useful when debugging javascript and want to prevent unwanted reloads.                    

Informazioni di Base sull'Estensione

Nome Tablockify Tablockify
ID ljoigkihbbkhheipboecckncfpljepbm
URL Ufficiale https://chromewebstore.google.com/detail/tablockify/ljoigkihbbkhheipboecckncfpljepbm
Descrizione Prevent your tab to be closed or reloaded
Dimensione del File 19.01 KB
Conteggio Installazioni 201
Versione Corrente 4
Ultimo Aggiornamento 2014-11-10
Data di Pubblicazione 2014-11-10
Valutazione 2.50/5 Totale 16 Valutazioni
Sviluppatore Erik Häyry
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tablockify",
    "version": "4",
    "description": "Prevent your tab to be closed or reloaded",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/lock.js"
            ]
        }
    ],
    "manifest_version": 2,
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "tabs",
        "contextMenus"
    ]
}