Blue Dot Replacement
Show a flashing alert icon when an unfocused tab's title changes.
ما هو Blue Dot Replacement؟
Blue Dot Replacement هو إضافة Chrome تم تطويرها بواسطة will.groenendyk، والميزة الرئيسية لها هي "Show a flashing alert icon when an unfocused tab's title changes.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Blue Dot Replacement
قم بتنزيل ملفات الامتداد Blue Dot Replacement بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Older versions of Chrome would display a dot next to the icon of recently updated tabs, which many users found extremely helpful for web applications like Slack, Mattermost, etc. Unfortunately, this feature has since been dropped from Chrome. This extension is MIT licensed and open-source (see https://github.com/willg101/blue-dot-replacement) Privacy Policy: [a](https://github.com/willg101/blue-dot-replacement/blob/1.3.0/PRIVACY%20POLICY.md) New in version 1.3.0 (2018-10-26): Added a privacy policy (thanks to Github user @fngdenco, who suggested this!) New in version 1.2.0 (2018-10-08): Added an option to disable the flashing icon for those who find it distracting (thanks to Github user @ferdnyc, who implemented this!)
معلومات أساسية عن التمديد
الاسم | |
ID | opjidajjikdcpbpbbcmadmignnimecco |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/blue-dot-replacement/opjidajjikdcpbpbbcmadmignnimecco |
الوصف | Show a flashing alert icon when an unfocused tab's title changes. |
حجم الملف | 17.55 KB |
عدد التثبيتات | 312 |
النسخة الحالية | 1.3.2 |
آخر تحديث | 2021-06-08 |
تاريخ النشر | 2018-12-03 |
تقييم | 4.18/5 مجموع تقييمات 11 |
المطور | will.groenendyk |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/willg101/blue-dot-replacement |
عنوان صفحة سياسة الخصوصية | https://github.com/willg101/blue-dot-replacement/blob/master/PRIVACY%20POLICY.md |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Blue Dot Replacement", "description": "Show a flashing alert icon when an unfocused tab's title changes.", "version": "1.3.2", "author": "Will Groenendyk", "options_ui": { "chrome_style": true, "page": "options.html", "open_in_tab": false }, "background": { "persistent": false, "scripts": [ "bg.js" ] }, "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "128": "img\/icon128.png" }, "web_accessible_resources": [ "img\/alarm.png" ], "short_name": "BDR", "permissions": [ "tabs", "storage", "https:\/\/*\/*", "http:\/\/*\/*" ] } |