Inject sidebar

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

Co to jest Inject sidebar?

Inject sidebar to rozszerzenie Chrome opracowane przez whittlrapp, a jego główną funkcją jest „Inject a sidebar on the current tab when the page action is clicked”.

Pobierz plik CRX rozszerzenia Inject sidebar

Pobierz pliki rozszerzeń Inject sidebar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                                            

Podstawowe informacje o rozszerzeniu

Nazwa Inject sidebar Inject sidebar
ID kbbmnigcllcnemhdlaenejpkaklcginf
Oficjalny URL https://chromewebstore.google.com/detail/inject-sidebar/kbbmnigcllcnemhdlaenejpkaklcginf
Opis Inject a sidebar on the current tab when the page action is clicked
Rozmiar pliku 24.6 KB
Liczba instalacji 12
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2016-09-01
Data Publikacji 2016-08-31
Deweloper whittlrapp
Typ Płatności free
Obsługiwane Języki 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"
    ]
}