Twitch Tracker
Easily get notified when a stream goes live. An extension by www.SirMrE.com.
Twitch Tracker란 무엇입니까?
Twitch Tracker은(는) https://www.sirmre.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily get notified when a stream goes live. An extension by www.SirMrE.com."입니다.
확장 프로그램 스크린샷
Twitch Tracker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Re-upload of the original Twitch Tracker chrome extension by SirMrE. It was accidentally deleted when I moved my email accounts away from Google - Sorry about that! -------------------------------- Track as many twitch accounts as you wish, and get visual and/or audible notifications when they go live. Does not use any personal information, or access any sort of sensitive data. There are no ads, tracking/data collection or other means to monetise this extension (not even analytical data like Google Analytics). It has been and always will be completely free. Version 1.0.2 -------------------------------- Migrated to new Twitch API - It should work again now. Known issue -------------------------------- - The Twitch Helix api does not support non-english channel names. Please import channels from Twitch directly and see if that helps!
확장 프로그램 기본 정보
이름 | Twitch Tracker |
ID | ablhocackcgobgcndbibfkjnmpdnmbpa |
공식 URL | https://chromewebstore.google.com/detail/twitch-tracker/ablhocackcgobgcndbibfkjnmpdnmbpa |
설명 | Easily get notified when a stream goes live. An extension by www.SirMrE.com. |
파일 크기 | 187 KB |
설치 횟수 | 369 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2023-10-11 |
출시 날짜 | 2023-01-19 |
평점 | 4.40/5 총 10 개의 평점 |
개발자 | https://www.sirmre.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitch Tracker", "version": "1.0.2", "manifest_version": 3, "description": "Easily get notified when a stream goes live. An extension by www.SirMrE.com.", "homepage_url": "https:\/\/www.sirmre.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "service_worker": "src\/bg\/background.js", "type": "module" }, "options_page": "src\/options\/index.html", "action": { "default_icon": "icons\/icon19.png", "default_title": "Twitch Tracker", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [ "storage", "notifications", "identity", "offscreen" ], "host_permissions": [ "https:\/\/*.twitch.tv\/*", "https:\/\/static-cdn.jtvnw.net\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "css": [ "src\/inject\/inject.css" ], "js": [ "src\/inject\/inject.js" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/icon128.png", "icons\/icon128-check.png" ], "matches": [ "https:\/\/twitch.tv\/*", "https:\/\/www.twitch.tv\/*" ] } ] } |