Blue Dot Replacement
Show a flashing alert icon when an unfocused tab's title changes.
Co to jest Blue Dot Replacement?
Blue Dot Replacement to rozszerzenie Chrome opracowane przez will.groenendyk, a jego główną funkcją jest „Show a flashing alert icon when an unfocused tab's title changes.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Blue Dot Replacement
Pobierz pliki rozszerzeń Blue Dot Replacement w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!)
Podstawowe informacje o rozszerzeniu
Nazwa | Blue Dot Replacement |
ID | opjidajjikdcpbpbbcmadmignnimecco |
Oficjalny URL | https://chromewebstore.google.com/detail/blue-dot-replacement/opjidajjikdcpbpbbcmadmignnimecco |
Opis | Show a flashing alert icon when an unfocused tab's title changes. |
Rozmiar pliku | 17.55 KB |
Liczba instalacji | 312 |
Aktualna Wersja | 1.3.2 |
Ostatnia Aktualizacja | 2021-06-08 |
Data Publikacji | 2018-12-03 |
Ocena | 4.18/5 Łącznie 11 Oceny |
Deweloper | will.groenendyk |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/willg101/blue-dot-replacement |
Adres URL Strony Polityki Prywatności | https://github.com/willg101/blue-dot-replacement/blob/master/PRIVACY%20POLICY.md |
Obsługiwane Języki | 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:\/\/*\/*" ] } |