Youtube™ Controller
Control Youtube™ videos from any web page
Youtube™ Controllerคืออะไร?
Youtube™ Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.maroun-baydoun.com และคุณลักษณะหลักของมันคือ "Control Youtube™ videos from any web page"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube™ Controller
ดาวน์โหลดไฟล์ส่วนขยาย Youtube™ Controller ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Play and pause Youtube™ videos from any other web page or even when Chrome is in the background. Up to two shortcuts can be set to control video playback. To set shortcuts for this extension, navigate to chrome://extensions/shortcuts
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube™ Controller |
ID | poalplpedjpddipkghmlhkmgbcnmecop |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-controller/poalplpedjpddipkghmlhkmgbcnmecop |
คำอธิบาย | Control Youtube™ videos from any web page |
ขนาดไฟล์ | 33.73 KB |
จำนวนการติดตั้ง | 2,231 |
เวอร์ชันปัจจุบัน | 2.1.0 |
อัปเดตครั้งล่าสุด | 2021-07-25 |
วันที่เผยแพร่ | 2019-12-12 |
คะแนน | 4.75/5 รวมทั้งหมด 51 คะแนน |
ผู้พัฒนา | https://www.maroun-baydoun.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/maroun-baydoun/youtube-controller-extension |
URL หน้าช่วยเหลือ | https://github.com/maroun-baydoun/youtube-controller-extension/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "author": "Maroun Baydoun", "version": "2.1.0", "browser_action": { "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": false }, "icons": { "32": "icon-small.png", "64": "icon-medium.png", "128": "icon-large.png", "256": "icon.png" }, "permissions": [ "tabs", "*:\/\/*.youtube.com\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'", "commands": { "toggle-video-1": { "suggested_key": { "default": "Ctrl+Shift+1" }, "description": "Toggle first video", "global": true }, "toggle-video-2": { "suggested_key": { "default": "Ctrl+Shift+2" }, "description": "Toggle second video", "global": true } } } |