Blue Dot Replacement

Show a flashing alert icon when an unfocused tab's title changes.

什么是Blue Dot Replacement?

Blue Dot Replacement是由will.groenendyk开发的Chrome扩展程序,该扩展的主要功能是“Show a flashing alert icon when an unfocused tab's title changes.”。

扩展截图

screenshot

下载Blue Dot Replacement扩展crx文件

下载Blue Dot Replacement扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!)                    

扩展基本信息

名称 Blue Dot Replacement Blue Dot Replacement
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
帮助页面URL https://github.com/willg101/blue-dot-replacement
隐私政策页面URL 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:\/\/*\/*"
    ]
}