Tab Duplicator Shortcut

An extension to do some things with keyboard shortcuts

Tab Duplicator Shortcut란 무엇입니까?

Tab Duplicator Shortcut은(는) Tanner Tracht에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to do some things with keyboard shortcuts"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This lightweight extension will add a keyboard shortcut for duplicating your current tab

simply press CTRL+SHIFT+Y and the current tab will be instantly duplicated.                    

확장 프로그램 기본 정보

이름 Tab Duplicator Shortcut Tab Duplicator Shortcut
ID dbpmgojhkioibaampnbpiiblpdjmkbjc
공식 URL https://chromewebstore.google.com/detail/tab-duplicator-shortcut/dbpmgojhkioibaampnbpiiblpdjmkbjc
설명 An extension to do some things with keyboard shortcuts
파일 크기 11.14 KB
설치 횟수 324
현재 버전 1.0.1
최근 업데이트 2018-11-12
출시 날짜 2018-11-12
평점 5.00/5 총 2 개의 평점
개발자 Tanner Tracht
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Duplicator Shortcut",
    "description": "An extension to do some things with keyboard shortcuts",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html",
        "default_title": "Tab Duplicator"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "commands": {
        "boom": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Toggle feature foo"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}