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
官方網址 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:\/\/*\/*"
    ]
}