Real Listen On Repeat
Repeat youtube videos
Real Listen On Repeatคืออะไร?
Real Listen On Repeat เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://miltonlaufer.com.ar และคุณลักษณะหลักของมันคือ "Repeat youtube videos"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Real Listen On Repeat
ดาวน์โหลดไฟล์ส่วนขยาย Real Listen On Repeat ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A simple button to listen Youtube videos on repeat ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | ignbdlcbpccodmdokjdkjfoebimbkpfc |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/real-listen-on-repeat/ignbdlcbpccodmdokjdkjfoebimbkpfc |
| คำอธิบาย | Repeat youtube videos |
| ขนาดไฟล์ | 8.98 KB |
| จำนวนการติดตั้ง | 89 |
| เวอร์ชันปัจจุบัน | 0.0.5.1 |
| อัปเดตครั้งล่าสุด | 2017-12-08 |
| วันที่เผยแพร่ | 2017-12-07 |
| คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
| ผู้พัฒนา | https://miltonlaufer.com.ar |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Real Listen On Repeat",
"short_name": "RealListenOnRepeat",
"description": "Repeat youtube videos",
"version": "0.0.5.1",
"manifest_version": 2,
"author": "@onwhatthereis",
"permissions": [
"tabs"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"name": "Click to set on\/off the Youtube Repeat mode"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"64": "icon64.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.youtube.com\/*",
"https:\/\/www.youtube.com\/*"
],
"run_at": "document_start",
"js": [
"myscript.js"
]
}
]
} | |