Simple YouTube Loop
Simple, clean way to loop a YouTube video.
Simple YouTube Loopคืออะไร?
Simple YouTube Loop เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mihelcic และคุณลักษณะหลักของมันคือ "Simple, clean way to loop a YouTube video."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simple YouTube Loop
ดาวน์โหลดไฟล์ส่วนขยาย Simple YouTube Loop ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension provides a simple YouTube loop button, on your HTML5 video controls bar. Nothing more. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | bfhmecnhdehblbnadegfpbmmbbobkjff |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/simple-youtube-loop/bfhmecnhdehblbnadegfpbmmbbobkjff |
| คำอธิบาย | Simple, clean way to loop a YouTube video. |
| ขนาดไฟล์ | 39.23 KB |
| จำนวนการติดตั้ง | 1,172 |
| เวอร์ชันปัจจุบัน | 0.6 |
| อัปเดตครั้งล่าสุด | 2017-09-07 |
| วันที่เผยแพร่ | 2017-09-07 |
| คะแนน | 4.58/5 รวมทั้งหมด 26 คะแนน |
| ผู้พัฒนา | mihelcic |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Simple YouTube Loop",
"short_name": "YouTube Loop",
"description": "Simple, clean way to loop a YouTube video.",
"version": "0.6",
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"js\/jq.js",
"js\/content.js"
]
}
],
"icons": {
"19": "images\/icon_19.png",
"38": "images\/icon_38.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"background": {
"persistent": false,
"scripts": [
"js\/bg.js"
]
},
"page_action": {
"default_icon": {
"19": "images\/icon_19.png",
"38": "images\/icon_38.png",
"48": "images\/icon_48.png",
"128": "images\/icon_128.png"
},
"default_title": "Simple YouTube Loop"
},
"permissions": [
"tabs"
]
} | |