Tab Duplicator Shortcut
An extension to do some things with keyboard shortcuts
Tab Duplicator Shortcutคืออะไร?
Tab Duplicator Shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tanner Tracht และคุณลักษณะหลักของมันคือ "An extension to do some things with keyboard shortcuts"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Duplicator Shortcut
ดาวน์โหลดไฟล์ส่วนขยาย Tab Duplicator Shortcut ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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" } } |