Tab Limiter And Restorer
Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space.
Qu'est-ce que Tab Limiter And Restorer ?
Tab Limiter And Restorer est une extension Chrome développée par https://inzk.dev, et sa fonction principale est "Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Limiter And Restorer
Téléchargez les fichiers d'extension Tab Limiter And Restorer 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
This extension enables you to limit the number of tabs opened in a browser window. It will close tabs when you reach the limit and restore them when there is a space.
Informations de Base sur l'Extension
Nom | Tab Limiter And Restorer |
ID | ifhilckbhneppbcbpkimbgeahhijhdpj |
URL Officiel | https://chromewebstore.google.com/detail/tab-limiter-and-restorer/ifhilckbhneppbcbpkimbgeahhijhdpj |
Description | Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space. |
Taille du Fichier | 63.97 KB |
Nombre d'Installations | 693 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2022-06-02 |
Date de Publication | 2020-06-17 |
Évaluation | 4.56/5 Total 9 Évaluations |
Développeur | https://inzk.dev |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Limiter And Restorer", "version": "1.1.0", "description": "Limit the number of tabs opened in a browser window. Close them when you reach the limit and restore them when there is a space.", "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "src\/utils\/utils.js", "src\/background\/storage.js", "src\/background\/on-tab-activated.js", "src\/background\/on-tab-event.js", "src\/background\/background.js" ], "persistent": true }, "browser_action": { "default_title": "Tab Limiter And Restorer", "default_popup": "src\/popup\/popup.html", "default_icon": { "16": "src\/assets\/icons\/icon-16.png", "19": "src\/assets\/icons\/icon-19.png", "24": "src\/assets\/icons\/icon-24.png", "32": "src\/assets\/icons\/icon-32.png", "38": "src\/assets\/icons\/icon-38.png", "48": "src\/assets\/icons\/icon-48.png" } }, "icons": { "16": "src\/assets\/icons\/icon-16.png", "19": "src\/assets\/icons\/icon-19.png", "24": "src\/assets\/icons\/icon-24.png", "32": "src\/assets\/icons\/icon-32.png", "38": "src\/assets\/icons\/icon-38.png", "48": "src\/assets\/icons\/icon-48.png", "128": "src\/assets\/icons\/icon-128.png" }, "manifest_version": 2 } |