Simple Tab Carousel
Tab carousel which pauses on a window focus
ما هو Simple Tab Carousel؟
Simple Tab Carousel هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Tab carousel which pauses on a window focus".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Simple Tab Carousel
قم بتنزيل ملفات الامتداد Simple Tab Carousel بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Automatically cycle through your tabs. Useful for monitoring lots of information on a single screen. Unlike other carousels it stops cycling when the window is focused, and start the carousel again when you focus on something else. This way you can always have a detailed look at something when you need it without disabling the extension. Default interval is 10 seconds (10000 milliseconds). Open source, If you like the extension, don't hesitate to star it ;) https://github.com/aigoncharov/chrome-tab-carousel Note: Icons are borrowed from fontawesome (https://fontawesome.com/icons/sync-alt?style=solid) under this license (https://fontawesome.com/license). Icons are not modified, but converted to the .png.
معلومات أساسية عن التمديد
الاسم | Simple Tab Carousel |
ID | ogkhchpclioobkplbmkjekalofgddagc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/simple-tab-carousel/ogkhchpclioobkplbmkjekalofgddagc |
الوصف | Tab carousel which pauses on a window focus |
حجم الملف | 20.59 KB |
عدد التثبيتات | 1,650 |
النسخة الحالية | 0.2.0 |
آخر تحديث | 2020-04-26 |
تاريخ النشر | 2020-04-26 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Unknown |
نوع الدفع | free |
موقع الإضافة | https://github.com/aigoncharov/chrome-tab-carousel |
عنوان صفحة المساعدة | https://github.com/aigoncharov/chrome-tab-carousel/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Tab Carousel", "version": "0.2.0", "description": "Tab carousel which pauses on a window focus", "manifest_version": 2, "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "permissions": [ "storage" ], "browser_action": [], "options_ui": { "page": "dist\/options.html", "open_in_tab": true }, "icons": { "16": "favicon16.png", "32": "favicon32.png", "48": "favicon48.png", "128": "favicon128.png" } } |