Sleep Timer
Put any tab on a sleep timer to close or mute the tab when the timer expires.
ما هو Sleep Timer؟
Sleep Timer هو إضافة Chrome تم تطويرها بواسطة daniel.andrew.dehaas، والميزة الرئيسية لها هي "Put any tab on a sleep timer to close or mute the tab when the timer expires.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Sleep Timer
قم بتنزيل ملفات الامتداد Sleep Timer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Turn on a sleep timer for any tab. You can choose to either close or mute the tab when the timer expires.
معلومات أساسية عن التمديد
الاسم | Sleep Timer |
ID | aogefgiamlllkemngojodbhbdigamjkj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/sleep-timer/aogefgiamlllkemngojodbhbdigamjkj |
الوصف | Put any tab on a sleep timer to close or mute the tab when the timer expires. |
حجم الملف | 25.49 KB |
عدد التثبيتات | 5,756 |
النسخة الحالية | 1.0 |
آخر تحديث | 2021-02-03 |
تاريخ النشر | 2021-02-02 |
تقييم | 2.52/5 مجموع تقييمات 21 |
المطور | daniel.andrew.dehaas |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://www.danielde.dev/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sleep Timer", "version": "1.0", "description": "Put any tab on a sleep timer to close or mute the tab when the timer expires.", "permissions": [ "tabs", "alarms", "storage" ], "background": { "scripts": [ ".\/background.js" ], "persistent": false }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "browser_action": { "default_icon": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "default_popup": "popup\/popup.html", "default_title": "Sleep Timer" } } |