Tab Overflow
A tool to prevent you from opening too many tabs.
Was ist Tab Overflow?
Tab Overflow ist eine Chrome-Erweiterung, die von lexmart entwickelt wurde, und ihr Hauptmerkmal ist "A tool to prevent you from opening too many tabs.".
Erweiterungsscreenshots
Tab Overflow-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tab Overflow-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
Tab Overflow is a tool to prevent you from opening too many tabs in one window. It will forcibly close any tab you try to open beyond the allowed number (which you can specify). This is useful because it prevents you from overflowing your windows with too useless tabs, and trains you to use tabs as a limited resource. Github Page: https://github.com/lexmart/taboverflow Developed by Alexander Martin (www.github.com/lexmart) Graphics designed by Tigran Kasparian
Grundlegende Informationen zur Erweiterung
Name | Tab Overflow |
ID | bkjofbabnobnejgceoncjoimceohlogl |
Offizielle URL | https://chromewebstore.google.com/detail/tab-overflow/bkjofbabnobnejgceoncjoimceohlogl |
Beschreibung | A tool to prevent you from opening too many tabs. |
Dateigröße | 21.73 KB |
Installationsanzahl | 16 |
Aktuelle Version | 0.1 |
Letztes Update | 2015-10-22 |
Veröffentlichungsdatum | 2015-10-22 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | lexmart |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Overflow", "description": "A tool to prevent you from opening too many tabs.", "version": "0.1", "options_page": "options.html", "background": { "persistent": false, "scripts": [ "tab-overflow.js" ] }, "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "web_accessible_resources": [ "options.html" ], "browser_action": { "default_title": "Tab Overflow", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |