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 là gì?

tabswitcher là một tiện ích mở rộng Chrome được phát triển bởi https://jhchabran.com, và tính năng chính của nó là "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng tabswitcher

Tải xuống các tệp mở rộng tabswitcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên tabswitcher tabswitcher
ID gkdkligmcadfbagoeggeohelmgalchcn
URL Chính Thức https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn
Mô tả TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
Kích Thước Tệp 375 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2015-09-29
Ngày Phát Hành 2015-09-29
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://jhchabran.com
Loại Thanh Toán free
Trang Web Mở Rộng http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/
URL Trang Trợ Giúp https://github.com/jhchabran/tabswitcher
Ngôn Ngữ Được Hỗ Trợ 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
}