Blue Dot Replacement
Show a flashing alert icon when an unfocused tab's title changes.
Cos'è Blue Dot Replacement?
Blue Dot Replacement è un'estensione di Chrome sviluppata da will.groenendyk, e la sua funzione principale è "Show a flashing alert icon when an unfocused tab's title changes.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Blue Dot Replacement
Scarica i file di estensione Blue Dot Replacement in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!)
Informazioni di Base sull'Estensione
Nome | Blue Dot Replacement |
ID | opjidajjikdcpbpbbcmadmignnimecco |
URL Ufficiale | https://chromewebstore.google.com/detail/blue-dot-replacement/opjidajjikdcpbpbbcmadmignnimecco |
Descrizione | Show a flashing alert icon when an unfocused tab's title changes. |
Dimensione del File | 17.55 KB |
Conteggio Installazioni | 312 |
Versione Corrente | 1.3.2 |
Ultimo Aggiornamento | 2021-06-08 |
Data di Pubblicazione | 2018-12-03 |
Valutazione | 4.18/5 Totale 11 Valutazioni |
Sviluppatore | will.groenendyk |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/willg101/blue-dot-replacement |
URL della Pagina della Politica sulla Privacy | https://github.com/willg101/blue-dot-replacement/blob/master/PRIVACY%20POLICY.md |
Lingue Supportate | 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:\/\/*\/*" ] } |