Tabbard

Copy Tab URLs to Clipboard

Tabbard란 무엇입니까?

Tabbard은(는) George Chakhidze에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy Tab URLs to Clipboard"입니다.

확장 프로그램 스크린샷

screenshot

Tabbard 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}