YouTubePlayer
Control YouTube videos across all tabs and windows from extension bar
YouTubePlayerคืออะไร?
YouTubePlayer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Akshaya Kumar และคุณลักษณะหลักของมันคือ "Control YouTube videos across all tabs and windows from extension bar"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTubePlayer
ดาวน์โหลดไฟล์ส่วนขยาย YouTubePlayer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This Chrome extension allows to toggle youtube videos that are playing across tabs and windows from the extension. It can skip the ads that are skippable without any time wait.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTubePlayer |
ID | djfdkfcebbbehfmibkkhneofknamohoi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtubeplayer/djfdkfcebbbehfmibkkhneofknamohoi |
คำอธิบาย | Control YouTube videos across all tabs and windows from extension bar |
ขนาดไฟล์ | 100 KB |
จำนวนการติดตั้ง | 31 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2019-08-04 |
วันที่เผยแพร่ | 2019-08-03 |
ผู้พัฒนา | Akshaya Kumar |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTubePlayer", "version": "1.0.0", "description": "Control YouTube videos across all tabs and windows from extension bar", "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |