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.
ما هو Tab Limiter And Restorer؟
Tab Limiter And Restorer هو إضافة Chrome تم تطويرها بواسطة https://inzk.dev، والميزة الرئيسية لها هي "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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tab Limiter And Restorer
قم بتنزيل ملفات الامتداد Tab Limiter And Restorer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Tab Limiter And Restorer |
ID | ifhilckbhneppbcbpkimbgeahhijhdpj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tab-limiter-and-restorer/ifhilckbhneppbcbpkimbgeahhijhdpj |
الوصف | 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. |
حجم الملف | 63.97 KB |
عدد التثبيتات | 693 |
النسخة الحالية | 1.1.0 |
آخر تحديث | 2022-06-02 |
تاريخ النشر | 2020-06-17 |
تقييم | 4.56/5 مجموع تقييمات 9 |
المطور | https://inzk.dev |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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 } |