Tab Shortcut Tools

Duplicate Tab, Pop out Tab, and New Tab to the Right - Configurable Shortcuts

Tab Shortcut Tools란 무엇입니까?

Tab Shortcut Tools은(는) https://thorium.rocks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Duplicate Tab, Pop out Tab, and New Tab to the Right - Configurable Shortcuts"입니다.

확장 프로그램 스크린샷

screenshot

Tab Shortcut Tools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chromium Extension to Duplicate Tab, Pop out current Tab, and add New Tab to the Right. You can configure the shortcuts at chrome://extensions/shortcuts
  - Alex313031

Source: https://github.com/Alex313031/Tab-Shortcut-Tools                    

확장 프로그램 기본 정보

이름 Tab Shortcut Tools Tab Shortcut Tools
ID ecfmgmpggijgmnjolmaegkhkcdkbookp
공식 URL https://chromewebstore.google.com/detail/tab-shortcut-tools/ecfmgmpggijgmnjolmaegkhkcdkbookp
설명 Duplicate Tab, Pop out Tab, and New Tab to the Right - Configurable Shortcuts
파일 크기 98.13 KB
설치 횟수 478
현재 버전 1.6.4
최근 업데이트 2023-04-17
출시 날짜 2022-07-05
평점 4.50/5 총 2 개의 평점
개발자 https://thorium.rocks
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Alex313031/Tab-Shortcut-Tools
도움말 페이지 URL https://github.com/Alex313031/Tab-Shortcut-Tools/issues
개인정보 보호 정책 페이지 URL https://thorium.rocks/COC.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Shortcut Tools",
    "short_name": "Tab Shortcut Tools",
    "version": "1.6.4",
    "version_name": "1.6.4",
    "description": "Duplicate Tab, Pop out Tab, and New Tab to the Right - Configurable Shortcuts",
    "homepage_url": "https:\/\/github.com\/Alex313031\/Tab-Shortcut-Tools",
    "author": "Alex313031",
    "icons": {
        "16": "icons\/icon_16.png",
        "24": "icons\/icon_24.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png",
        "256": "icons\/icon_256.png"
    },
    "background": {
        "service_worker": "js\/service_worker.js"
    },
    "options_ui": {
        "page": "popup.html"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon_16.png",
            "19": "icons\/icon_19.png",
            "24": "icons\/icon_24.png",
            "32": "icons\/icon_32.png",
            "38": "icons\/icon_38.png",
            "48": "icons\/icon_48.png"
        },
        "default_title": "Configure Tab Shortcut Tools",
        "default_popup": "popup.html"
    },
    "commands": {
        "duplicate-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+D"
            },
            "description": "Duplicate the current tab"
        },
        "duplicate-to-new-window": {
            "description": "Duplicate to a new window"
        },
        "pop-out-to-new-window": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Pop tab out to a new window"
        },
        "new-tab-to-the-right": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "New tab to the right"
        }
    },
    "permissions": [
        "storage"
    ],
    "minimum_chrome_version": "88",
    "offline_enabled": true
}