Codebase Tab Completion

Adds tab completion to the address bar.

Что такое Codebase Tab Completion?

Codebase Tab Completion - это расширение Chrome, разработанное Adam Alton, и его основная функция - "Adds tab completion to the address bar.".

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

screenshot

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

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

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

                        Works with the codebasehq.com code hosting site to give you tab completion for you account's URL structure.  Easily navigate to projects, tickets, repos and settings without having to click through a series of links on the site.  By just typing a few letters as hints and using the tab key to auto-fill the rest, this extension makes navigating your codebase projects lightning fast.

You'll soon wonder how you lived without it.

Activate it by typing "cb" + TAB.                    

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

Название Codebase Tab Completion Codebase Tab Completion
ID efnopbjdbimbahdihiecpjihglpjnbjn
Официальный URL https://chromewebstore.google.com/detail/codebase-tab-completion/efnopbjdbimbahdihiecpjihglpjnbjn
Описание Adds tab completion to the address bar.
Размер файла 312 KB
Количество установок 12
Текущая Версия 1.1
Последнее Обновление 2014-07-23
Дата публикации 2014-07-23
Разработчик Adam Alton
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/adamalton/codebase-address-bar-tab-completion
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Codebase Tab Completion",
    "description": "Adds tab completion to the address bar.",
    "version": "1.1",
    "author": "Adam Alton ",
    "omnibox": {
        "keyword": "cb"
    },
    "background": {
        "scripts": [
            "abc.js"
        ]
    },
    "permissions": [
        "storage",
        "https:\/\/api3.codebasehq.com\/*"
    ],
    "browser_action": {
        "default_icon": "tab_completion_16.png",
        "default_popup": "settings.html"
    }
}