Twitch Tracker
Easily get notified when a stream goes live. An extension by www.SirMrE.com.
Twitch Trackerคืออะไร?
Twitch Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.sirmre.com และคุณลักษณะหลักของมันคือ "Easily get notified when a stream goes live. An extension by www.SirMrE.com."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Tracker
ดาวน์โหลดไฟล์ส่วนขยาย Twitch Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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! ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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\/*"
]
}
]
} | |