YouTube Repeat Button
YouTube Repeat Button.
YouTube Repeat Buttonคืออะไร?
YouTube Repeat Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vladislav Tupikin และคุณลักษณะหลักของมันคือ "YouTube Repeat Button."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Repeat Button
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Repeat Button ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Google Chrome extension that embeds a video repeat button directly into the YouTube player
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Repeat Button |
ID | mpaeilkfigmkompknfmmnojgkbkahfdk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-repeat-button/mpaeilkfigmkompknfmmnojgkbkahfdk |
คำอธิบาย | YouTube Repeat Button. |
ขนาดไฟล์ | 15.33 KB |
จำนวนการติดตั้ง | 394 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2021-01-05 |
วันที่เผยแพร่ | 2019-12-20 |
คะแนน | 3.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Vladislav Tupikin |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/MrRefactoring/youtube-repeat |
ภาษาที่รองรับ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "1.0.0", "default_locale": "en", "icons": { "16": "src\/images\/icons\/icon16.png", "48": "src\/images\/icons\/icon48.png", "128": "src\/images\/icons\/icon128.png" }, "content_scripts": [ { "run_at": "document_end", "css": [ "src\/styles.css" ], "js": [ "src\/helpers\/onElementHeightChange.js", "src\/helpers\/onRepeatClick.js", "src\/helpers\/removeTitle.js", "src\/helpers\/resetTitle.js", "src\/helpers\/createButton.js", "src\/helpers\/patcher.js", "src\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "tabs" ] } |