Twitch Live Notification

Get notified of live broadcast you're following on Twitch

Twitch Live Notificationคืออะไร?

Twitch Live Notification เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://a2tt.me และคุณลักษณะหลักของมันคือ "Get notified of live broadcast you're following on Twitch"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Live Notification

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

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

                        This extension shows live channels you are following.
You only need to write down your ID once.

It periodically fetches information about the streamers you follow, 
shows streamers that are on live broadcast currently,
and also let you know when the live broadcast starts.

# Updates
23.09.09 Maintenance
20.09.20 Dark Mode
20.09.15 Notification
20.09.14                    

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

ชื่อ Twitch Live Notification Twitch Live Notification
ID jchdobapodgpkopkldkegoopmkmpkbia
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-live-notification/jchdobapodgpkopkldkegoopmkmpkbia
คำอธิบาย Get notified of live broadcast you're following on Twitch
ขนาดไฟล์ 360 KB
จำนวนการติดตั้ง 121
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2023-09-10
วันที่เผยแพร่ 2020-09-14
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://a2tt.me
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/a2tt/Twitch-Live-Notification
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Get notified of live broadcast you're following on Twitch",
    "version": "1.1.0",
    "manifest_version": 3,
    "name": "Twitch Live Notification",
    "action": {
        "default_icon": "\/img\/icon_16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "\/img\/icon_16.png",
        "32": "\/img\/icon_32.png",
        "48": "\/img\/icon_48.png",
        "128": "\/img\/icon_128.png"
    },
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "notifications",
        "identity"
    ],
    "host_permissions": [
        "https:\/\/*.twitch.tv\/"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; connect-src https:\/\/*.twitch.tv http:\/\/localhost:* ws:\/\/localhost:*;"
    }
}