Duplicate Tab Hotkey
Adds a hotkey for duplicating the current tab.
Duplicate Tab Hotkey란 무엇입니까?
Duplicate Tab Hotkey은(는) Elijah Verdoorn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a hotkey for duplicating the current tab."입니다.
확장 프로그램 스크린샷
Duplicate Tab Hotkey 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple, free, libre, open-source extension requiring no permissions that adds a hotkey to Chrome for duplicating the current tab. No tracking is used in this extension, which also requires no special permissions. Users are welcome to view the complete source code (https://github.com/elijahverdoorn/duplicate-tab-extension) in order to ensure confidence that their browsing remains private. Right now, the hotkey is configured to be Ctrl+Shift+E on Windows and Command+Shift+E on Mac. In future versions the hotkey may become configurable.
확장 프로그램 기본 정보
이름 | |
ID | adgkgjklgiilebgjckenkknhbenpiinc |
공식 URL | https://chromewebstore.google.com/detail/duplicate-tab-hotkey/adgkgjklgiilebgjckenkknhbenpiinc |
설명 | Adds a hotkey for duplicating the current tab. |
파일 크기 | 58.09 KB |
설치 횟수 | 91 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2020-01-24 |
출시 날짜 | 2020-01-24 |
개발자 | Elijah Verdoorn |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://elijahverdoorn.com |
도움말 페이지 URL | https://elijahverdoorn.com/contact |
개인정보 보호 정책 페이지 URL | https://elijahverdoorn.com/chrome-tab-duplicator-privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Duplicate Tab Hotkey", "version": "1.1.0", "description": "Adds a hotkey for duplicating the current tab.", "browser_action": { "default_popup": "about.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "duplicate-tab": { "suggested_key": { "default": "Ctrl+Shift+E", "mac": "Command+Shift+E" }, "description": "Duplicate the current tab." } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "options_ui": { "page": "about.html", "open_in_tab": false }, "manifest_version": 2 } |