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
官方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
}