Keyboard shortcuts to close Chrome tabs
Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
Hvad er Keyboard shortcuts to close Chrome tabs?
Keyboard shortcuts to close Chrome tabs er en Chrome-udvidelse udviklet af https://diophung.com, og dens hovedfunktion er "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones".
Udvidelsesskærmbilleder
Download Keyboard shortcuts to close Chrome tabs-udvidelses-CRX-fil
Download Keyboard shortcuts to close Chrome tabs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? This extension will let you do it, and there are more. You can configure the hotkeys to: - Close tabs to the left. - Close tabs to the right. - Close other tabs. - Pin/unpin a tab. Source code available at : https://github.com/diophung/close-chrome-tabs Please provide your feedback to Twitter: @diophung or email : [email protected].
Grundlæggende oplysninger om udvidelsen
Navn | Keyboard shortcuts to close Chrome tabs |
ID | fipfgiejfpcdacpjepkohdlnjonchnal |
Officiel URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal |
Beskrivelse | Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones |
Filstørrelse | 293 KB |
Antal Installationer | 4,928 |
Nuværende Version | 0.3.0 |
Senest Opdateret | 2022-02-07 |
Udgivelsesdato | 2018-06-24 |
Bedømmelse | 4.64/5 Samlet 25 Bedømmelser |
Udvikler | https://diophung.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/diophung/close-chrome-tabs |
Hjælpeside-URL | https://diophung.com/chrome-tab-shortcut-privacy-policy/ |
URL til Fortrolighedspolitik Side | https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy |
Understøttede Sprog | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "close-other-tabs-dp": { "description": "Close other tabs", "suggested_key": { "default": "Alt+Shift+W" } }, "close-left-tabs-dp": { "description": "Close tabs to the left", "suggested_key": { "default": "Alt+Shift+L" } }, "close-right-tabs-dp": { "description": "Close tabs to the right", "suggested_key": { "default": "Alt+Shift+R" } }, "toggle-pin-dp": { "description": "Pin\/unpin Tab", "suggested_key": { "default": "Alt+Shift+P" } } }, "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones", "icons": { "128": "images\/tabs_128.png", "48": "images\/tabs_48.png" }, "manifest_version": 2, "name": "Keyboard shortcuts to close Chrome tabs", "short_name": "Shortcuts to close tabs", "options_page": "options.html", "permissions": [], "version": "0.3.0" } |