Inject sidebar

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

O que é Inject sidebar?

Inject sidebar é uma extensão do Chrome desenvolvida por whittlrapp, e sua principal característica é "Inject a sidebar on the current tab when the page action is clicked".

Baixar o arquivo CRX da Extensão Inject sidebar

Baixe arquivos de extensão Inject sidebar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                                            

Informações Básicas da Extensão

Nome Inject sidebar Inject sidebar
ID kbbmnigcllcnemhdlaenejpkaklcginf
URL Oficial https://chromewebstore.google.com/detail/inject-sidebar/kbbmnigcllcnemhdlaenejpkaklcginf
Descrição Inject a sidebar on the current tab when the page action is clicked
Tamanho do Arquivo 24.6 KB
Contagem de Instalações 12
Versão Atual 0.2
Última Atualização 2016-09-01
Data de Publicação 2016-08-31
Desenvolvedor whittlrapp
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}