Tab Countdown Timer
A Chromium Extension that allows you to set a timer that counts down and then closes the tab.
ما هو Tab Countdown Timer؟
Tab Countdown Timer هو إضافة Chrome تم تطويرها بواسطة lokico، والميزة الرئيسية لها هي "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tab Countdown Timer
قم بتنزيل ملفات الامتداد Tab Countdown Timer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Allows you to quickly set a countdown timer on a tab. Once the timer expires, the tab closes. Every tab can have a different timer. Enter time by typing or by using a mousewheel. --- Changes for v1.1 - Add dark mode based on current system settings - Save last alarm values as default for next time - Update to chrome manifest v3
معلومات أساسية عن التمديد
الاسم | Tab Countdown Timer |
ID | maoljenpfpdblggdbnhmegofbhhcdgle |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tab-countdown-timer/maoljenpfpdblggdbnhmegofbhhcdgle |
الوصف | A Chromium Extension that allows you to set a timer that counts down and then closes the tab. |
حجم الملف | 101 KB |
عدد التثبيتات | 6,368 |
النسخة الحالية | 1.1 |
آخر تحديث | 2022-11-12 |
تاريخ النشر | 2020-08-06 |
تقييم | 4.29/5 مجموع تقييمات 14 |
المطور | lokico |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Countdown Timer", "version": "1.1", "manifest_version": 3, "description": "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.", "icons": { "16": "icons\/hourglass16.png", "32": "icons\/hourglass32.png", "48": "icons\/hourglass48.png", "128": "icons\/hourglass128.png" }, "action": { "default_popup": "popup\/popup.html" }, "background": { "service_worker": "background\/background.js" }, "permissions": [ "alarms", "storage" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } } |