Correct Pause
Extension to fix YouTube Spacebar play/pause function
Correct Pauseคืออะไร?
Correct Pause เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aljo และคุณลักษณะหลักของมันคือ "Extension to fix YouTube Spacebar play/pause function"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Correct Pause
ดาวน์โหลดไฟล์ส่วนขยาย Correct Pause ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension was made by MrQuackDuck, not me (Aljo). The reason it's under my name is because I bought a chrome developer account, and offered to publish the extension while giving full credit to the original developer. After a recent update, YouTube is now having an issue with pressing Spacebar to play/pause the video after Alt+Tab and in cases when you're unfocused from the videoplayer. This browser extension is here to fix this. Source code: https://github.com/MrQuackDuck/CorrectPause Check out more stuff on https://justempire.net Support mail: [email protected]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Correct Pause |
ID | bcbjldkfkgpipahfcghnjcmcjnhmigpg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg |
คำอธิบาย | Extension to fix YouTube Spacebar play/pause function |
ขนาดไฟล์ | 8.39 KB |
จำนวนการติดตั้ง | 366 |
เวอร์ชันปัจจุบัน | 1.6 |
อัปเดตครั้งล่าสุด | 2024-01-26 |
วันที่เผยแพร่ | 2023-11-16 |
คะแนน | 4.60/5 รวมทั้งหมด 20 คะแนน |
ผู้พัฒนา | Aljo |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://justempire.net |
URL หน้าช่วยเหลือ | https://github.com/MrQuackDuck/CorrectPause |
URL หน้านโยบายความเป็นส่วนตัว | https://justempire.net/en/service/14/correct-youtube-pause |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Correct Pause", "version": "1.6", "permissions": [ "scripting" ], "host_permissions": [ "*:\/\/youtube.com\/*" ], "description": "Extension to fix YouTube Spacebar play\/pause function", "icons": { "32": "icons\/correctPause-32.png", "48": "icons\/correctPause-48.png", "64": "icons\/correctPause-64.png", "128": "icons\/correctPause-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "correctPause.js" ] } ] } |