TabMan
Save your tabs, organize and reload them whenever you like
Was ist TabMan?
TabMan ist eine Chrome-Erweiterung, die von gili yohanan entwickelt wurde, und ihr Hauptmerkmal ist "Save your tabs, organize and reload them whenever you like".
Erweiterungsscreenshots
TabMan-Erweiterungs-CRX-Datei herunterladen
Laden Sie TabMan-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | TabMan |
ID | mjecgmidbglkbhhhbijalnpnbelnhgnh |
Offizielle URL | https://chromewebstore.google.com/detail/tabman/mjecgmidbglkbhhhbijalnpnbelnhgnh |
Beschreibung | Save your tabs, organize and reload them whenever you like |
Dateigröße | 868 KB |
Installationsanzahl | 83 |
Aktuelle Version | 3.1.0 |
Letztes Update | 2015-12-31 |
Veröffentlichungsdatum | 2015-12-30 |
Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
Entwickler | gili yohanan |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |