Tab Overflow
A tool to prevent you from opening too many tabs.
Wat is Tab Overflow?
Tab Overflow is een Chrome-extensie ontwikkeld door lexmart, en de belangrijkste functie is "A tool to prevent you from opening too many tabs.".
Extensie Screenshots
Download het CRX-bestand van de extensie Tab Overflow
Download Tab Overflow-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Tab Overflow |
ID | bkjofbabnobnejgceoncjoimceohlogl |
Officiële URL | https://chromewebstore.google.com/detail/tab-overflow/bkjofbabnobnejgceoncjoimceohlogl |
Beschrijving | A tool to prevent you from opening too many tabs. |
Bestandsgrootte | 21.73 KB |
Aantal Installaties | 16 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2015-10-22 |
Publicatiedatum | 2015-10-22 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | lexmart |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |