YouTube Repeat
Repeats a YouTube video
YouTube Repeatคืออะไร?
YouTube Repeat เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jimmy Fu และคุณลักษณะหลักของมันคือ "Repeats a YouTube video"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Repeat
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Repeat ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Minimalistic extension for replaying YouTube videos. Instructions: 1) Open a YouTube video 2) On the top-right corner, a repeat icon will appear (See screenshot if you are confused) 3) Press it to enable or disable
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Repeat |
ID | bijjfhgimphjklllkmbdapkfemdnhmpj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-repeat/bijjfhgimphjklllkmbdapkfemdnhmpj |
คำอธิบาย | Repeats a YouTube video |
ขนาดไฟล์ | 24.45 KB |
จำนวนการติดตั้ง | 2,323 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2015-10-09 |
วันที่เผยแพร่ | 2015-10-08 |
คะแนน | 4.37/5 รวมทั้งหมด 35 คะแนน |
ผู้พัฒนา | Jimmy Fu |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Repeat", "short_name": "Repeat", "description": "Repeats a YouTube video", "version": "1.1", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon.png", "default_title": "Repeat" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content_script.js" ], "matches": [ "*:\/\/youtube.com\/*", "*:\/\/*.youtube.com\/*" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |