LED Notifications

Blinks Your Webcam LED Light When You Have Unread Notifications In Any Open Chrome Tabs

LED Notificationsคืออะไร?

LED Notifications เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bt และคุณลักษณะหลักของมันคือ "Blinks Your Webcam LED Light When You Have Unread Notifications In Any Open Chrome Tabs"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LED Notifications

ดาวน์โหลดไฟล์ส่วนขยาย LED Notifications ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Do you keep your browser minimized when you're working? Tired of periodically checking the browser for unread notifications from Facebook, Twitter, Gmail, Quora, Linkedin and others?

This extension checks all your open tabs for unread notifications, as an example - a tab with a title of "(1) Facebook" means that you have 1 unread notification on that website.

Whenever an unread notification is found in any open tab, the webcam is turned on & off periodically - which inturn blinks its LED indicator. Use this as an out of screen visual cue to check your browser, free from any other distraction.

* Requires permission to access your webcam (please use the options page to grant access, it can be revoked similarly).

* NOTE TO USERS
- This extension does not record, save or use your webcam, it just turns it on and off and ignores the data.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LED Notifications LED Notifications
ID kbgjipnnacknlkbbgpkgncnjochlfiml
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/led-notifications/kbgjipnnacknlkbbgpkgncnjochlfiml
คำอธิบาย Blinks Your Webcam LED Light When You Have Unread Notifications In Any Open Chrome Tabs
ขนาดไฟล์ 37.39 KB
จำนวนการติดตั้ง 94
เวอร์ชันปัจจุบัน 2015.12.5.3
อัปเดตครั้งล่าสุด 2015-12-05
วันที่เผยแพร่ 2015-12-05
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา bt
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://www.qbuzzer.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LED Notifications",
    "version": "2015.12.5.3",
    "description": "Blinks Your Webcam LED Light When You Have Unread Notifications In Any Open Chrome Tabs",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png"
        },
        "default_title": "LED Notifications",
        "default_popup": "html\/popup.html"
    },
    "author": "Bhaskar Tiwari",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ]
}