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