Blue Dot Replacement
Show a flashing alert icon when an unfocused tab's title changes.
Blue Dot Replacement là gì?
Blue Dot Replacement là một tiện ích mở rộng Chrome được phát triển bởi will.groenendyk, và tính năng chính của nó là "Show a flashing alert icon when an unfocused tab's title changes.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Blue Dot Replacement
Tải xuống các tệp mở rộng Blue Dot Replacement dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Blue Dot Replacement |
ID | opjidajjikdcpbpbbcmadmignnimecco |
URL Chính Thức | https://chromewebstore.google.com/detail/blue-dot-replacement/opjidajjikdcpbpbbcmadmignnimecco |
Mô tả | Show a flashing alert icon when an unfocused tab's title changes. |
Kích Thước Tệp | 17.55 KB |
Số Lần Cài Đặt | 312 |
Phiên Bản Hiện Tại | 1.3.2 |
Cập Nhật Lần Cuối | 2021-06-08 |
Ngày Phát Hành | 2018-12-03 |
Đánh Giá | 4.18/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | will.groenendyk |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/willg101/blue-dot-replacement |
URL Trang Chính Sách Bảo Mật | https://github.com/willg101/blue-dot-replacement/blob/master/PRIVACY%20POLICY.md |
Ngôn Ngữ Được Hỗ Trợ | 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:\/\/*\/*" ] } |