PowerTab

Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.

Что такое PowerTab?

PowerTab - это расширение Chrome, разработанное Insane, и его основная функция - "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".

Снимки экрана расширения

screenshot

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

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

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

                        Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs.                    

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

Название PowerTab PowerTab
ID ihfgepigeejhaclnhdgmoinblbcalccc
Официальный URL https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc
Описание Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
Размер файла 20.13 KB
Количество установок 34
Текущая Версия 1.0
Последнее Обновление 2013-09-16
Дата публикации 2013-09-16
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Insane
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PowerTab",
    "description": "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.",
    "version": "1.0",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "clipboardWrite",
        "tabs"
    ],
    "icons": {
        "16": "icon16x16.png",
        "48": "icon48x48.png",
        "128": "icon128x128.png"
    },
    "browser_action": {
        "default_icon": "icon16x16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ]
}