YouTube Comment Expander
This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.
YouTube Comment Expanderคืออะไร?
YouTube Comment Expander เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joel Henke และคุณลักษณะหลักของมันคือ "This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Comment Expander
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Comment Expander ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The bug that this extension fixes happens when you start watching a YouTube video and enter full screen before the comments load. The 'Read More' link will be missing for the first several long comments. This extension allows you to read those longer comments without reloading the page or loading more comments.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Comment Expander |
ID | bknceopjdngnciilahnddipmpjgmpfhe |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-comment-expander/bknceopjdngnciilahnddipmpjgmpfhe |
คำอธิบาย | This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers. |
ขนาดไฟล์ | 4.99 KB |
จำนวนการติดตั้ง | 88 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2017-08-26 |
วันที่เผยแพร่ | 2017-08-26 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Joel Henke |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Comment Expander", "version": "1.0", "description": "This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.", "author": "Joel Henke", "permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "icons": { "48": "icon48.png", "128": "icon128.png" } } |