Tabbard

Copy Tab URLs to Clipboard

什么是Tabbard?

Tabbard是由George Chakhidze开发的Chrome扩展程序,该扩展的主要功能是“Copy Tab URLs to Clipboard”。

扩展截图

screenshot

下载Tabbard扩展crx文件

下载Tabbard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Copy URLs (with or without titles) from:

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

Visit extension options to adjust your preferences.                    

扩展基本信息

名称 Tabbard Tabbard
ID jjgomhmmlcknccaafhilfiodnfbommae
官方URL https://chromewebstore.google.com/detail/tabbard/jjgomhmmlcknccaafhilfiodnfbommae
简介 Copy Tab URLs to Clipboard
文件大小 25.74 KB
安装次数 126
当前版本 1.1.0.0
更新时间 2021-07-04
上架时间 2019-03-09
开发者 George Chakhidze
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/0xfeeddeadbeef/Tabbard
帮助页面URL https://github.com/0xfeeddeadbeef/Tabbard/issues
支持的语言 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
    }
}