Auto Replay YouTube™ Videos
Auto replay your favorite youtube videos in a loop with zero clicks!
Auto Replay YouTube™ Videosคืออะไร?
Auto Replay YouTube™ Videos เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://opensourceforgeeks.blogspot.com และคุณลักษณะหลักของมันคือ "Auto replay your favorite youtube videos in a loop with zero clicks!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Replay YouTube™ Videos
ดาวน์โหลดไฟล์ส่วนขยาย Auto Replay YouTube™ Videos ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
* Replay your favorite youtube videos automatically with 0 clicks.
* Optional settings to turn off the auto looping behavior in a single click.
* Easy to use extension with visibility limited to youtube only.
* Auto play setting is changed based on looping status. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | mepicphbpehnpdkmnphaepbglimkeedp |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/auto-replay-youtube-video/mepicphbpehnpdkmnphaepbglimkeedp |
| คำอธิบาย | Auto replay your favorite youtube videos in a loop with zero clicks! |
| ขนาดไฟล์ | 72.76 KB |
| จำนวนการติดตั้ง | 682 |
| เวอร์ชันปัจจุบัน | 0.0.3 |
| อัปเดตครั้งล่าสุด | 2018-02-28 |
| วันที่เผยแพร่ | 2018-02-27 |
| คะแนน | 4.43/5 รวมทั้งหมด 7 คะแนน |
| ผู้พัฒนา | https://opensourceforgeeks.blogspot.com |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Auto Replay YouTube\u2122 Videos",
"version": "0.0.3",
"manifest_version": 2,
"description": "Auto replay your favorite youtube videos in a loop with zero clicks!",
"icons": {
"48": "icon-48.png",
"128": "icon-128.png"
},
"page_action": {
"default_icon": "icon-19.png",
"default_title": "Toggle YouTube replay"
},
"background": {
"scripts": [
"jquery-1.7.1.min.js",
"background.js"
],
"persistent": false
},
"permissions": [
"declarativeContent",
"activeTab",
"notifications"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"jquery-1.7.1.min.js",
"waitForKeyElements.js",
"contentscript.js"
],
"run_at": "document_end",
"all_frames": true
}
]
} | |