Twitch Live Notification

Get notified of live broadcast you're following on Twitch

Twitch Live Notification란 무엇입니까?

Twitch Live Notification은(는) https://a2tt.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get notified of live broadcast you're following on Twitch"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Twitch Live Notification 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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:*;"
    }
}