Youtube Embed
This extension adds an additional button to the youtube player that toggles embedded mode.
Youtube Embedคืออะไร?
Youtube Embed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rosca.valentin2012 และคุณลักษณะหลักของมันคือ "This extension adds an additional button to the youtube player that toggles embedded mode."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Embed
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Embed ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds an additional button to the youtube player that toggles embedded mode.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | hbeapjkbnlomlkplfchcobioeeockkpd |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-embed/hbeapjkbnlomlkplfchcobioeeockkpd |
คำอธิบาย | This extension adds an additional button to the youtube player that toggles embedded mode. |
ขนาดไฟล์ | 44.96 KB |
จำนวนการติดตั้ง | 151 |
เวอร์ชันปัจจุบัน | 1.1.2 |
อัปเดตครั้งล่าสุด | 2017-06-26 |
วันที่เผยแพร่ | 2017-06-26 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | rosca.valentin2012 |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.1.2", "name": "Youtube Embed", "author": "Valentin Rosca", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/www.youtube.com\/embed\/*", "https:\/\/www.youtube.com\/watch*" ], "js": [ "jquery.min.js", "youtube_embed.js" ] } ], "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] } } |