Youtube Repeat
Save your preference once and it will repeat the video for your favourite songs
Youtube Repeatคืออะไร?
Youtube Repeat เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mercury200Hg และคุณลักษณะหลักของมันคือ "Save your preference once and it will repeat the video for your favourite songs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Repeat
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Repeat ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Single repeat choice for all YouTube links. - Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage. Icons used are made by Freepick from www.flaticons.com
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube Repeat |
ID | mbimaenpniemflhmhbahldkfppflbcjh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh |
คำอธิบาย | Save your preference once and it will repeat the video for your favourite songs |
ขนาดไฟล์ | 8.63 KB |
จำนวนการติดตั้ง | 361 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2017-03-12 |
วันที่เผยแพร่ | 2017-03-12 |
คะแนน | 4.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | mercury200Hg |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Repeat", "browser_action": { "default_icon": "loop-arrow-32.png", "default_popup": "popup.html", "default_title": "Click repeat" }, "description": "Save your preference once and it will repeat the video for your favourite songs", "icons": { "128": "loop-arrow-128.png", "32": "loop-arrow-32.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "tabs", "webNavigation", "*:\/\/*.youtube.com\/*", "storage" ], "version": "1.0.0" } |