Inject sidebar

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

Qu'est-ce que Inject sidebar ?

Inject sidebar est une extension Chrome développée par whittlrapp, et sa fonction principale est "Inject a sidebar on the current tab when the page action is clicked".

Télécharger le fichier CRX de l'extension Inject sidebar

Téléchargez les fichiers d'extension Inject sidebar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                                            

Informations de Base sur l'Extension

Nom Inject sidebar Inject sidebar
ID kbbmnigcllcnemhdlaenejpkaklcginf
URL Officiel https://chromewebstore.google.com/detail/inject-sidebar/kbbmnigcllcnemhdlaenejpkaklcginf
Description Inject a sidebar on the current tab when the page action is clicked
Taille du Fichier 24.6 KB
Nombre d'Installations 12
Version Actuelle 0.2
Dernière Mise à Jour 2016-09-01
Date de Publication 2016-08-31
Développeur whittlrapp
Type de Paiement free
Langues Prises en Charge 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"
    ]
}