PolyExtend
Extend your stream experience
PolyExtendคืออะไร?
PolyExtend เป็นส่วนขยายของ Chrome ที่พัฒนาโดย PolyDev และคุณลักษณะหลักของมันคือ "Extend your stream experience"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PolyExtend
ดาวน์โหลดไฟล์ส่วนขยาย PolyExtend ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
PolyExtend is a browser extension which adds extra features and tweaks to the live streaming websites Twitch and Beam. Some of the features it adds: - Twitch emotes on Beam - Custom channel emotes for non-partners - Message beautifier for StreamLink - Randomized username colors - Hide user avatars in chat (Beam only) - Show uploaded channel thumbnails (Beam only)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | cemfleddjlllfepdhabmmelmemodfjbf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/polyextend/cemfleddjlllfepdhabmmelmemodfjbf |
คำอธิบาย | Extend your stream experience |
ขนาดไฟล์ | 63.04 KB |
จำนวนการติดตั้ง | 46 |
เวอร์ชันปัจจุบัน | 1.1.5 |
อัปเดตครั้งล่าสุด | 2016-05-15 |
วันที่เผยแพร่ | 2016-05-15 |
คะแนน | 4.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | PolyDev |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://extend.dinu.ga/ |
URL หน้าช่วยเหลือ | https://github.com/Tromino/PolyExtend/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PolyExtend", "description": "Extend your stream experience", "version": "1.1.5", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.beam.pro\/*" ], "js": [ "js\/lib\/jquery.js", "js\/lib\/observe.js", "js\/lib\/bigint.js", "js\/main.js", "js\/beam.js", "js\/feat\/styles.js", "js\/feat\/thumbnails.js", "js\/feat\/devatars.js", "js\/feat\/mentions.js", "js\/feat\/emotes.js", "js\/feat\/images.js", "js\/feat\/beamlink.js", "js\/feat\/teams.js", "js\/feat\/colors.js", "js\/feat\/deleted.js" ] }, { "matches": [ "*:\/\/*.twitch.tv\/*" ], "js": [ "js\/lib\/jquery.js", "js\/lib\/observe.js", "js\/lib\/bigint.js", "js\/main.js", "js\/twitch.js", "js\/feat\/styles.js", "js\/feat\/thumbnails.js", "js\/feat\/devatars.js", "js\/feat\/mentions.js", "js\/feat\/emotes.js", "js\/feat\/images.js", "js\/feat\/beamlink.js", "js\/feat\/teams.js", "js\/feat\/colors.js", "js\/feat\/deleted.js" ] } ], "page_action": { "default_title": "PolyExtend Settings", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false } } |