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
Eメール [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:\/\/*\/*"
    ]
}