Open Tab

Customize how to open a link, open in new or current tab.

Cos'è Open Tab?

Open Tab è un'estensione di Chrome sviluppata da https://zimoapps.com, e la sua funzione principale è "Customize how to open a link, open in new or current tab.".

Scarica il file CRX dell'estensione Open Tab

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

                                            

Informazioni di Base sull'Estensione

Nome Open Tab Open Tab
ID fkhjihfkdjjkfnbemicdcpgpdgonjfpg
URL Ufficiale https://chromewebstore.google.com/detail/open-tab/fkhjihfkdjjkfnbemicdcpgpdgonjfpg
Descrizione Customize how to open a link, open in new or current tab.
Dimensione del File 16.05 KB
Conteggio Installazioni 38
Versione Corrente 0.9.1610.123
Ultimo Aggiornamento 2015-12-24
Data di Pubblicazione 2015-12-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://zimoapps.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://privacy.zimoapps.com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open Tab",
    "version": "0.9.1610.123",
    "description": "__MSG_ext_des__",
    "default_locale": "en",
    "icons": {
        "128": "img\/icon.png",
        "98": "img\/icon.png",
        "48": "img\/icon.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon.png",
            "38": "img\/icon.png"
        },
        "default_title": "Open in new tab",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/event.js"
            ],
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "html\/options.html",
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": false,
        "open_in_tab": false
    },
    "permissions": [
        "",
        "notifications",
        "tabs",
        "storage"
    ]
}