Tab Ninja

Close tabs with loads of options (left, right, audible, muted, domain, url, pinned, etc)

Tab Ninja là gì?

Tab Ninja là một tiện ích mở rộng Chrome được phát triển bởi Harsh Vakharia, và tính năng chính của nó là "Close tabs with loads of options (left, right, audible, muted, domain, url, pinned, etc)".

Ả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 Tab Ninja

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

                        # Permissions

* tabs / Read your browsing history: Used for querying tabs with same url/host/domain

Source code: https://github.com/harshjv/tab-ninja                    

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

Tên Tab Ninja Tab Ninja
ID ciffmfhhemdpbpppgbfnlkbbehmdbpnh
URL Chính Thức https://chromewebstore.google.com/detail/tab-ninja/ciffmfhhemdpbpppgbfnlkbbehmdbpnh
Mô tả Close tabs with loads of options (left, right, audible, muted, domain, url, pinned, etc)
Kích Thước Tệp 32.89 KB
Số Lần Cài Đặt 305
Phiên Bản Hiện Tại 0.0.5
Cập Nhật Lần Cuối 2020-05-20
Ngày Phát Hành 2020-05-19
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Harsh Vakharia
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/harshjv/tab-ninja
URL Trang Trợ Giúp https://github.com/harshjv/tab-ninja/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Ninja",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Close tabs with loads of options (left, right, audible, muted, domain, url, pinned, etc)",
    "homepage_url": "https:\/\/github.com\/harshjv\/tab-ninja",
    "author": "Harsh Vakharia  (https:\/\/harshjv.github.io)",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "128": "icons\/icon-128.png"
        },
        "default_title": "Close tabs with loads of options"
    }
}