Player Assistant
Player Assistant is an auxiliary tool for video watching. Because not every video player provides the same keyboard shortcuts, the…
Player Assistantคืออะไร?
Player Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย andre3000tw และคุณลักษณะหลักของมันคือ "Player Assistant is an auxiliary tool for video watching. Because not every video player provides the same keyboard shortcuts, the…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Player Assistant
ดาวน์โหลดไฟล์ส่วนขยาย Player Assistant ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Player Assistant is an auxiliary tool for video watching. Because not every video player provides the same keyboard shortcuts, the goal of Player Assistant is to integrate common shortcuts of these players, make every video player can have the same integrated features, and give users a better viewing experience. Features: * Support multiple keyboard shortcuts for video watching * Adjustable time/speed/volume offset! Support shortcuts for: * Rewind/Fast Forward * Decreasing/Increasing playback speed or volume * Toggling fullscreen, mute, play/pause on every video player * Skipping to beginning/end/0% - 90% of video * Playing next episode for Netflix * Toggling caption between 'Traditional Chinese' and 'English' for Netflix For more usage and info, check me on Github: https://github.com/Andre3000TW/player-assistant Changelog: *v1.1.4.2 -Bug fix for Youtube play/pause issue *v1.1.4.1 -Netflix caption toggle bug fixes *v1.1.4 -Migrated to Manifest V3 * v1.1.3 -Auto focus bug fixes -Embedded Youtube videos bug fixes -Netflix draining next episode button bug fixes * v1.1.2 -Netflix next episode button bug fixes * v1.1.1 -Netflix bug fixes * v1.1.0 -cross-origin videos & Youtube is now available for Player Assistant -change default volume offset from 5% to 10% -increase reliability and decrease the possibility for keyboard shortcut conflicts -fix 's' key conflict(volume down & skipping intro) in Netflix -change max playback speed of Netflix to 16x * v1.0.0 -initial release
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Player Assistant |
ID | igdagoipdgdcidbkflnildofndcbnfff |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/player-assistant/igdagoipdgdcidbkflnildofndcbnfff |
คำอธิบาย | Player Assistant is an auxiliary tool for video watching. Because not every video player provides the same keyboard shortcuts, the… |
ขนาดไฟล์ | 35.37 KB |
จำนวนการติดตั้ง | 68 |
เวอร์ชันปัจจุบัน | 1.1.4.2 |
อัปเดตครั้งล่าสุด | 2023-10-30 |
วันที่เผยแพร่ | 2020-07-22 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | andre3000tw |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Player Assistant", "version": "1.1.4.2", "manifest_version": 3, "homepage_url": "https:\/\/github.com\/Andre3000TW\/player-assistant", "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "action": { "default_icon": { "16": "images\/action_off.png" }, "default_title": "Player Assistant" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "exclude_matches": [ "https:\/\/*.netflix.com\/*" ], "js": [ "js\/pa.js" ] }, { "matches": [ "https:\/\/*.netflix.com\/*" ], "js": [ "js\/inject.js" ] } ], "web_accessible_resources": [ { "resources": [ "js\/pa4nf.js" ], "matches": [ "https:\/\/*.netflix.com\/*" ] } ], "permissions": [ "tabs", "storage" ] } |