Tab Mover (Move tabs with keyboard shortcuts)
Move your tabs around with keyboard shortcuts
Co to jest Tab Mover (Move tabs with keyboard shortcuts)?
Tab Mover (Move tabs with keyboard shortcuts) to rozszerzenie Chrome opracowane przez Dennis Paagman, a jego główną funkcją jest „Move your tabs around with keyboard shortcuts”.
Pobierz plik CRX rozszerzenia Tab Mover (Move tabs with keyboard shortcuts)
Pobierz pliki rozszerzeń Tab Mover (Move tabs with keyboard shortcuts) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Move your tabs around with keyboard shortcuts. Installation instructions: Install the extension directly from the Chrome Web Store Scroll to the bottom of your 'Extensions' preferences Click 'Keyboard Shortcuts' at the bottom right Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-]
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | dbkbmgieiomjnpimkilnkkcjioecdmio |
Oficjalny URL | https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio |
Opis | Move your tabs around with keyboard shortcuts |
Rozmiar pliku | 19.11 KB |
Liczba instalacji | 46 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2016-11-25 |
Data Publikacji | 2016-11-25 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | Dennis Paagman |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Mover (Move tabs with keyboard shortcuts)", "short_name": "Tab Mover", "description": "Move your tabs around with keyboard shortcuts", "version": "1.2", "author": "Dennis Paagman", "icons": { "128": "icon-128.png", "64": "icon-64.png" }, "background": { "scripts": [ "tabMover.js" ] }, "permissions": [ "activeTab" ], "commands": { "move-tab-left": { "suggested_key": { "default": "Ctrl+Shift+O", "mac": "Command+Shift+O" }, "description": "Move current tab to the left" }, "move-tab-right": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "Move current tab to the right" } } } |