'Nuff Tabs
Limit the number of open tabs. Automatically close previous tabs.
Qu'est-ce que 'Nuff Tabs ?
'Nuff Tabs est une extension Chrome développée par https://www.squobble.com, et sa fonction principale est "Limit the number of open tabs. Automatically close previous tabs.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension 'Nuff Tabs
Téléchargez les fichiers d'extension 'Nuff Tabs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | 'Nuff Tabs |
ID | kemeihccgedidlokcbfhdekcfojpjjmp |
URL Officiel | https://chromewebstore.google.com/detail/nuff-tabs/kemeihccgedidlokcbfhdekcfojpjjmp |
Description | Limit the number of open tabs. Automatically close previous tabs. |
Taille du Fichier | 11.11 KB |
Nombre d'Installations | 975 |
Version Actuelle | 0.5 |
Dernière Mise à Jour | 2015-10-02 |
Date de Publication | 2015-10-02 |
Évaluation | 4.44/5 Total 18 Évaluations |
Développeur | https://www.squobble.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/steven2358/NuffTabs |
URL de la Page d'Aide | https://github.com/steven2358/NuffTabs/issues |
Langues Prises en Charge | 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" } |