Tab Duplicator Shortcut
An extension to do some things with keyboard shortcuts
Apa itu Tab Duplicator Shortcut?
Tab Duplicator Shortcut adalah ekstensi Chrome yang dikembangkan oleh Tanner Tracht, dan fitur utamanya adalah "An extension to do some things with keyboard shortcuts".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Tab Duplicator Shortcut
Unduh file ekstensi Tab Duplicator Shortcut dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Tab Duplicator Shortcut |
ID | dbpmgojhkioibaampnbpiiblpdjmkbjc |
URL Resmi | https://chromewebstore.google.com/detail/tab-duplicator-shortcut/dbpmgojhkioibaampnbpiiblpdjmkbjc |
Deskripsi | An extension to do some things with keyboard shortcuts |
Ukuran File | 11.14 KB |
Jumlah Instalasi | 324 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2018-11-12 |
Tanggal Publikasi | 2018-11-12 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Tanner Tracht |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |