'Nuff Tabs
Limit the number of open tabs. Automatically close previous tabs.
Wat is 'Nuff Tabs?
'Nuff Tabs is een Chrome-extensie ontwikkeld door https://www.squobble.com, en de belangrijkste functie is "Limit the number of open tabs. Automatically close previous tabs.".
Extensie Screenshots
Download het CRX-bestand van de extensie 'Nuff Tabs
Download 'Nuff Tabs-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
Limit the number of open tabs. Tabs are automatically closed when you surpass the limit, based on a rule you can specify. Options allow to 1. set the tab limit 2. specify the discard rule 3. leave the pinned tabs untouched 4. show the current number of tabs in the icon The following discard rules are included: Either close the oldest tab, the newest tab (avoids auto-closing tabs), the least recently used tab, the least frequently used tab, or a random tab. Source code: https://github.com/steven2358/NuffTabs
Basisinformatie over de Extensie
Naam | 'Nuff Tabs |
ID | kemeihccgedidlokcbfhdekcfojpjjmp |
Officiële URL | https://chromewebstore.google.com/detail/nuff-tabs/kemeihccgedidlokcbfhdekcfojpjjmp |
Beschrijving | Limit the number of open tabs. Automatically close previous tabs. |
Bestandsgrootte | 11.11 KB |
Aantal Installaties | 975 |
Huidige Versie | 0.5 |
Laatst Bijgewerkt | 2015-10-02 |
Publicatiedatum | 2015-10-02 |
Beoordeling | 4.44/5 Totaal 18 Beoordelingen |
Ontwikkelaar | https://www.squobble.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/steven2358/NuffTabs |
Help Pagina-URL | https://github.com/steven2358/NuffTabs/issues |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "'Nuff Tabs", "author": "Steven Van Vaerenbergh", "version": "0.5", "description": "Limit the number of open tabs. Automatically close previous tabs.", "permissions": [ "tabs" ], "icons": { "19": "i\/nufftabs19.png", "32": "i\/nufftabs32.png", "48": "i\/nufftabs48.png", "64": "i\/nufftabs64.png", "128": "i\/nufftabs128.png" }, "browser_action": { "default_name": "'Nuff Tabs", "default_icon": "i\/nufftabs19.png", "default_popup": "popup.html" }, "background": { "persistent": false, "scripts": [ "nufftabs.js" ] }, "options_page": "options.html" } |