Better YouTube Gaming
BetterYTG enhances YouTube Gaming Livestream's with more emotes (Twitch, BTTV Emotes), new features, and more.
Better YouTube Gamingคืออะไร?
Better YouTube Gaming เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sparcut และคุณลักษณะหลักของมันคือ "BetterYTG enhances YouTube Gaming Livestream's with more emotes (Twitch, BTTV Emotes), new features, and more."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Better YouTube Gaming
ดาวน์โหลดไฟล์ส่วนขยาย Better YouTube Gaming ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Live notifications are currently only available for one channel (Ice Poseidon) while support for other channels is developed. - Twitch.TV emotes! - GIF emotes! - Hundreds of custom emotes! - Twitch styled chat! - Improved chat! - Tons of enhancements! - Even more coming soon! Emote Dictionary - https://github.com/sparcut/BetterYTG/tree/master/src/assets/emotes (BETA WARNING) This extension is still in beta, please be aware you may experience issues. In these (hopefully) rare occasions, please submit the bug on GitHub via the link below. We appreciate your cooperation and understanding. The extension is fully open source, covered under The GNU General Public License v3.0. If you would like to contribute or submit feature requests, bug reports, issues etc. please follow this link to GitHub.com https://github.com/sparcut/BetterYTG.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Better YouTube Gaming |
ID | ioncgheockjakdmpighekmfhdljboimf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/better-youtube-gaming/ioncgheockjakdmpighekmfhdljboimf |
คำอธิบาย | BetterYTG enhances YouTube Gaming Livestream's with more emotes (Twitch, BTTV Emotes), new features, and more. |
ขนาดไฟล์ | 2.71 MB |
จำนวนการติดตั้ง | 14,640 |
เวอร์ชันปัจจุบัน | 0.3.0 |
อัปเดตครั้งล่าสุด | 2019-09-10 |
วันที่เผยแพร่ | 2019-09-09 |
คะแนน | 3.81/5 รวมทั้งหมด 37 คะแนน |
ผู้พัฒนา | sparcut |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better YouTube Gaming", "short_name": "BetterYTG", "version": "0.3.0", "description": "BetterYTG enhances YouTube Gaming Livestream's with more emotes (Twitch, BTTV Emotes), new features, and more.", "icons": { "16": "assets\/icons\/BetterYTG_red_16.png", "48": "assets\/icons\/BetterYTG_red_48.png", "128": "assets\/icons\/BetterYTG_red_128.png" }, "permissions": [ "storage", "background", "tabs", "https:\/\/*.ytimg.com\/*", "https:\/\/twitchemotes.com\/*" ], "options_ui": { "page": "html\/options.html", "chrome_style": true }, "browser_action": { "default_title": "BetterYTG" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.gaming.youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "run_at": "document_end", "js": [ "content.js" ], "all_frames": true } ], "web_accessible_resources": [ "assets\/emotes\/*" ] } |