Blue Dot Replacement

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

Что такое Blue Dot Replacement?

Blue Dot Replacement - это расширение Chrome, разработанное will.groenendyk, и его основная функция - "Show a flashing alert icon when an unfocused tab's title changes.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Blue Dot Replacement

Скачайте файлы расширений 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:\/\/*\/*"
    ]
}