Blue Dot Replacement
Show a flashing alert icon when an unfocused tab's title changes.
Qu'est-ce que Blue Dot Replacement ?
Blue Dot Replacement est une extension Chrome développée par will.groenendyk, et sa fonction principale est "Show a flashing alert icon when an unfocused tab's title changes.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Blue Dot Replacement
Téléchargez les fichiers d'extension Blue Dot Replacement au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!)
Informations de Base sur l'Extension
Nom | Blue Dot Replacement |
ID | opjidajjikdcpbpbbcmadmignnimecco |
URL Officiel | https://chromewebstore.google.com/detail/blue-dot-replacement/opjidajjikdcpbpbbcmadmignnimecco |
Description | Show a flashing alert icon when an unfocused tab's title changes. |
Taille du Fichier | 17.55 KB |
Nombre d'Installations | 312 |
Version Actuelle | 1.3.2 |
Dernière Mise à Jour | 2021-06-08 |
Date de Publication | 2018-12-03 |
Évaluation | 4.18/5 Total 11 Évaluations |
Développeur | will.groenendyk |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/willg101/blue-dot-replacement |
URL de la Page de Politique de Confidentialité | https://github.com/willg101/blue-dot-replacement/blob/master/PRIVACY%20POLICY.md |
Langues Prises en Charge | 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:\/\/*\/*" ] } |