Move Tab Left
This extension allows you to put the current tab at the beggining of the tab bar.
Cos'è Move Tab Left?
Move Tab Left è un'estensione di Chrome sviluppata da mp, e la sua funzione principale è "This extension allows you to put the current tab at the beggining of the tab bar.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Move Tab Left
Scarica i file di estensione Move Tab Left in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Very often you need to move the current tab to the beginning of the tab bar, to the left. This extension allows you to put the tab at the first position, moves it to the left, with just a click of a button or with a keyboard shortcut. By default the keyboard shortcut is set to ctrl + left_arrow, to change it go to Settings -> Extensions -> Keyboard Shortcuts (it's at the bottom). Update V2: - Added context menus to put tab in first, second and third place. So if you want to move the tab to the left to the second spot you can right click the extension icon and hit "2. Put in second place".
Informazioni di Base sull'Estensione
Nome | Move Tab Left |
ID | flgjflnifhabbdliblomhkhoplfhheie |
URL Ufficiale | https://chromewebstore.google.com/detail/move-tab-left/flgjflnifhabbdliblomhkhoplfhheie |
Descrizione | This extension allows you to put the current tab at the beggining of the tab bar. |
Dimensione del File | 7.64 KB |
Conteggio Installazioni | 207 |
Versione Corrente | 2.1 |
Ultimo Aggiornamento | 2016-08-28 |
Data di Pubblicazione | 2016-08-28 |
Valutazione | 4.00/5 Totale 4 Valutazioni |
Sviluppatore | mp |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://brostack.com |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Move Tab Left", "description": "This extension allows you to put the current tab at the beggining of the tab bar.", "version": "2.1", "browser_action": { "default_icon": { "38": "icon38.png" }, "default_title": "Move Tab Left" }, "permissions": [ "contextMenus" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "commands": { "move_tab": { "suggested_key": { "default": "Ctrl+Left", "mac": "Command+Left" }, "description": "Put tab at the beginning" } } } |