Tabbard

Copy Tab URLs to Clipboard

Tabbard là gì?

Tabbard là một tiện ích mở rộng Chrome được phát triển bởi George Chakhidze, và tính năng chính của nó là "Copy Tab URLs to Clipboard".

Ả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 Tabbard

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

                        Copy URLs (with or without titles) from:

— All tabs
— Only selected tabs
— Only focused window tabs

Visit extension options to adjust your preferences.                    

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

Tên Tabbard Tabbard
ID jjgomhmmlcknccaafhilfiodnfbommae
URL Chính Thức https://chromewebstore.google.com/detail/tabbard/jjgomhmmlcknccaafhilfiodnfbommae
Mô tả Copy Tab URLs to Clipboard
Kích Thước Tệp 25.74 KB
Số Lần Cài Đặt 126
Phiên Bản Hiện Tại 1.1.0.0
Cập Nhật Lần Cuối 2021-07-04
Ngày Phát Hành 2019-03-09
Nhà Phát Triển George Chakhidze
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/0xfeeddeadbeef/Tabbard
URL Trang Trợ Giúp https://github.com/0xfeeddeadbeef/Tabbard/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tabbard",
    "short_name": "Tabbard",
    "version": "1.1.0.0",
    "description": "Copy Tab URLs to Clipboard",
    "minimum_chrome_version": "23.0.0.0",
    "icons": {
        "16": "assets\/tabs-16x16.png",
        "24": "assets\/tabs-24x24.png",
        "32": "assets\/tabs-32x32.png",
        "48": "assets\/tabs-48x48.png",
        "64": "assets\/tabs-64x64.png",
        "72": "assets\/tabs-72x72.png",
        "96": "assets\/tabs-96x96.png",
        "128": "assets\/tabs-128x128.png",
        "256": "assets\/tabs-256x256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/tabs-16x16.png",
            "24": "assets\/tabs-24x24.png",
            "32": "assets\/tabs-32x32.png",
            "48": "assets\/tabs-48x48.png",
            "64": "assets\/tabs-64x64.png",
            "72": "assets\/tabs-72x72.png",
            "96": "assets\/tabs-96x96.png",
            "128": "assets\/tabs-128x128.png",
            "256": "assets\/tabs-256x256.png"
        },
        "default_title": "Copy All Tab URLs"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    }
}