Player Enhancer for YouTube
Chrome Extension for Player Enhancer on YouTube
Player Enhancer for YouTubeคืออะไร?
Player Enhancer for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fiahfy.blogspot.com และคุณลักษณะหลักของมันคือ "Chrome Extension for Player Enhancer on YouTube"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Player Enhancer for YouTube
ดาวน์โหลดไฟล์ส่วนขยาย Player Enhancer for YouTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
- Add seek buttons on the bottom control. - Add reload button on the chat menu.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Player Enhancer for YouTube |
ID | enakpddkofoddibleaedgbcpbnpoeond |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/player-enhancer-for-youtu/enakpddkofoddibleaedgbcpbnpoeond |
คำอธิบาย | Chrome Extension for Player Enhancer on YouTube |
ขนาดไฟล์ | 167 KB |
จำนวนการติดตั้ง | 557 |
เวอร์ชันปัจจุบัน | 0.0.6 |
อัปเดตครั้งล่าสุด | 2021-05-18 |
วันที่เผยแพร่ | 2020-05-26 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://fiahfy.blogspot.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "icons": { "128": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ], "css": [ "content-script.css" ] } ], "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage", "https:\/\/www.youtube.com\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "name": "Player Enhancer for YouTube", "description": "Chrome Extension for Player Enhancer on YouTube", "version": "0.0.6" } |