tabswitcher

TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…

Что такое tabswitcher?

tabswitcher - это расширение Chrome, разработанное https://jhchabran.com, и его основная функция - "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".

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

screenshot

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

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

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

                        TL;DR Remember Textmate's Command-T ? It's the same for chrome. 

Warning: shortcut has to be manually set in chrome's extension settings.  
Suggestion: use alt-space.                    

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

Название tabswitcher tabswitcher
ID gkdkligmcadfbagoeggeohelmgalchcn
Официальный URL https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn
Описание TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
Размер файла 375 KB
Количество установок 22
Текущая Версия 1.0.2
Последнее Обновление 2015-09-29
Дата публикации 2015-09-29
Рейтинг 4.50/5 Всего 2 оценок
Разработчик https://jhchabran.com
Тип оплаты free
Официальный сайт расширения http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/
URL страницы помощи https://github.com/jhchabran/tabswitcher
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "tabswitcher",
    "version": "1.0.2",
    "browser_action": {
        "default_title": "Show the popup",
        "default_popup": "popup.html",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "tabswitcher.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "tabswitcher.js",
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2
}