Custom YouTube Start Stop
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…
Custom YouTube Start Stopคืออะไร?
Custom YouTube Start Stop เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jonathan Li และคุณลักษณะหลักของมันคือ "This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Custom YouTube Start Stop
ดาวน์โหลดไฟล์ส่วนขยาย Custom YouTube Start Stop ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is especially useful for long youtube videos for podcasts or bedtime stories.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Custom YouTube Start Stop |
ID | lodhfkhkhdjjicigiinipdkcbbndpbme |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme |
คำอธิบาย | This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is… |
ขนาดไฟล์ | 31.64 KB |
จำนวนการติดตั้ง | 39 |
เวอร์ชันปัจจุบัน | 0.1.2 |
อัปเดตครั้งล่าสุด | 2021-05-11 |
วันที่เผยแพร่ | 2021-05-11 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Jonathan Li |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom YouTube Start Stop", "version": "0.1.2", "offline_enabled": true, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch?v=*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "19": "img\/icon19.png", "38": "img\/icon38.png", "16": "img\/icon16.png", "24": "img\/icon24.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "page_action": { "default_title": "Custom YouTube Start Stop", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |