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…

Co je tabswitcher?

tabswitcher je rozšíření Chrome vyvinuté https://jhchabran.com, a jeho hlavní funkcí je „TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření tabswitcher

Stáhněte si soubory rozšíření tabswitcher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název tabswitcher tabswitcher
ID gkdkligmcadfbagoeggeohelmgalchcn
Oficiální URL https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn
Popis TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
Velikost souboru 375 KB
Počet instalací 22
Aktuální Verze 1.0.2
Poslední Aktualizace 2015-09-29
Datum Vydání 2015-09-29
Hodnocení 4.50/5 Celkem 2 Hodnocení
Vývojář https://jhchabran.com
Typ Platby free
Webové stránky Rozšíření http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/
URL Stránky Nápovědy https://github.com/jhchabran/tabswitcher
Podporované Jazyky 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
}