More Tab Shortcuts

A simple extension that adds useful shortcuts to manage your tabs

More Tab Shortcuts là gì?

More Tab Shortcuts là một tiện ích mở rộng Chrome được phát triển bởi robertn702, và tính năng chính của nó là "A simple extension that adds useful shortcuts to manage your tabs".

Ả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 More Tab Shortcuts

Tải xuống các tệp mở rộng More Tab Shortcuts 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

                        *Note: Are you trying this extension on the Chrome Web Store? Chrome extensions are not allowed to execute on the Chrome Web Store (this page). Please try the shortcuts on another page.

Available tab shortcuts:

NEW:
-----
Sort Tabs "alt + s"

Move Tab Actions
------------------
Left: "alt + shift + ["
Right: "alt + shift + ]"
To New Window: "alt + m"
To New Window (Same Domains): "alt + shift + m"
To One Window: "alt + e"
To Position: "alt + {1-9}"

Other Tab Actions
------------------
Close Tabs to the Right: "alt + w"
Duplicate Tab: "alt + d"
Pin Tab: "alt + p"
Refresh All Tabs: "alt + r"
Highlight Tabs Left: "alt + shift + left"
Highlight Tabs Right: "alt + shift + right"

With more coming in the future...                    

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

Tên More Tab Shortcuts More Tab Shortcuts
ID haihcdnkfkghflognmhdlldecnkkjflc
URL Chính Thức https://chromewebstore.google.com/detail/more-tab-shortcuts/haihcdnkfkghflognmhdlldecnkkjflc
Mô tả A simple extension that adds useful shortcuts to manage your tabs
Kích Thước Tệp 163 KB
Số Lần Cài Đặt 11
Phiên Bản Hiện Tại 0.8.0
Cập Nhật Lần Cuối 2017-05-01
Ngày Phát Hành 2017-04-30
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển robertn702
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "More Tab Shortcuts",
    "description": "A simple extension that adds useful shortcuts to manage your tabs",
    "version": "0.8.0",
    "browser_action": {
        "default_title": "More Tab Shortcuts",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkWMmvp9mXs+3NZsmg+mL8bZeY5xmB6Vtc7Z54Y1HjYfuJbHNDNEbHskgv+3i4GoV24\/VOjJiJY0Dp5iZRiHv9\/mY\/pZSZOuDmh6ZgMV1\/xJlx\/YAm09w6at6ZiZ7LWfEsEupbkRSjGtR9iciOX8nW\/1nEMHCnlsM0wu3m8dGceQv2jgJOB1S+P5NTOjy2y4AAk7Mbjj5I1GS2eoRKY6j1K5uzB792riIRILlbJTevCIGujPkCMQO5W+LFrBRW1lkUDBt7vxxUooF7XChYafz9fpVfNYsV7BmowR34lvyldcpqHmdmBM5R\/tv9zZtaK3\/hFedqSpv1kEo75fLZQ24GQIDAQAB",
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "node_modules\/mousetrap\/mousetrap.min.js",
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        ".\/content.js",
        ".\/options.css",
        ".\/options.js"
    ]
}