TabMan
Save your tabs, organize and reload them whenever you like
Cos'è TabMan?
TabMan è un'estensione di Chrome sviluppata da gili yohanan, e la sua funzione principale è "Save your tabs, organize and reload them whenever you like".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TabMan
Scarica i file di estensione TabMan 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
You can save your favorite tabs and reload them whenever you like. Also you can place a timer to each tab or window so it deletes automaticaly from history. TabSaver helps you to organize and manage your tabs and wondows.
Informazioni di Base sull'Estensione
Nome | TabMan |
ID | mjecgmidbglkbhhhbijalnpnbelnhgnh |
URL Ufficiale | https://chromewebstore.google.com/detail/tabman/mjecgmidbglkbhhhbijalnpnbelnhgnh |
Descrizione | Save your tabs, organize and reload them whenever you like |
Dimensione del File | 868 KB |
Conteggio Installazioni | 83 |
Versione Corrente | 3.1.0 |
Ultimo Aggiornamento | 2015-12-31 |
Data di Pubblicazione | 2015-12-30 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | gili yohanan |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TabMan", "description": "Save your tabs, organize and reload them whenever you like", "version": "3.1.0", "browser_action": { "default_title": "TabMan", "default_popup": "index.html" }, "commands": { "arrange": { "suggested_key": { "default": "Alt+A", "windows": "Alt+A", "mac": "Alt+A" }, "description": "arrange my tabs" }, "split": { "suggested_key": { "default": "Alt+S", "windows": "Alt+S", "mac": "Alt+S" }, "description": "split window" }, "merge": { "suggested_key": { "default": "Alt+M", "windows": "Alt+M", "mac": "Alt+M" }, "description": "merge windows" }, "past": { "suggested_key": { "default": "Alt+V", "windows": "Alt+V", "mac": "Alt+V" }, "description": "past my tab" }, "copy": { "description": "copy my tab" }, "cut": { "description": "cut my tab" } }, "icons": { "32": "1.png", "64": "1.png" }, "background": { "scripts": [ "jquery.js", "background.js" ] }, "permissions": [ "tabs", "activeTab", "storage" ] } |