Inject sidebar

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

Что такое Inject sidebar?

Inject sidebar - это расширение Chrome, разработанное whittlrapp, и его основная функция - "Inject a sidebar on the current tab when the page action is clicked".

Скачать файл CRX расширения Inject sidebar

Скачайте файлы расширений Inject sidebar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                                            

Основная информация о расширении

Название Inject sidebar Inject sidebar
ID kbbmnigcllcnemhdlaenejpkaklcginf
Официальный URL https://chromewebstore.google.com/detail/inject-sidebar/kbbmnigcllcnemhdlaenejpkaklcginf
Описание Inject a sidebar on the current tab when the page action is clicked
Размер файла 24.6 KB
Количество установок 12
Текущая Версия 0.2
Последнее Обновление 2016-09-01
Дата публикации 2016-08-31
Разработчик whittlrapp
Тип оплаты free
Поддерживаемые языки 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"
    ]
}