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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
    ]
}