Inject sidebar

Inject a sidebar on the current tab when the page action is clicked

Cos'è Inject sidebar?

Inject sidebar è un'estensione di Chrome sviluppata da whittlrapp, e la sua funzione principale è "Inject a sidebar on the current tab when the page action is clicked".

Scarica il file CRX dell'estensione Inject sidebar

Scarica i file di estensione Inject sidebar 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 Inject sidebar Inject sidebar
ID kbbmnigcllcnemhdlaenejpkaklcginf
URL Ufficiale https://chromewebstore.google.com/detail/inject-sidebar/kbbmnigcllcnemhdlaenejpkaklcginf
Descrizione Inject a sidebar on the current tab when the page action is clicked
Dimensione del File 24.6 KB
Conteggio Installazioni 12
Versione Corrente 0.2
Ultimo Aggiornamento 2016-09-01
Data di Pubblicazione 2016-08-31
Sviluppatore whittlrapp
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inject sidebar",
    "manifest_version": 2,
    "description": "Inject a sidebar on the current tab when the page action is clicked",
    "version": "0.2",
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_icon": "whittlr.logo.png",
        "default_title": "Inject sidebar"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        "frame.html"
    ]
}