Codebase Tab Completion

Adds tab completion to the address bar.

Co to jest Codebase Tab Completion?

Codebase Tab Completion to rozszerzenie Chrome opracowane przez Adam Alton, a jego główną funkcją jest „Adds tab completion to the address bar.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Codebase Tab Completion

Pobierz pliki rozszerzeń Codebase Tab Completion 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Codebase Tab Completion Codebase Tab Completion
ID efnopbjdbimbahdihiecpjihglpjnbjn
Oficjalny URL https://chromewebstore.google.com/detail/codebase-tab-completion/efnopbjdbimbahdihiecpjihglpjnbjn
Opis Adds tab completion to the address bar.
Rozmiar pliku 312 KB
Liczba instalacji 12
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2014-07-23
Data Publikacji 2014-07-23
Deweloper Adam Alton
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/adamalton/codebase-address-bar-tab-completion
Obsługiwane Języki 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"
    }
}