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是由https://jhchabran.com開發的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…”。

擴展截圖

screenshot

下載tabswitcher擴展crx文件

下載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
官方網址 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
}