Correct Pause
Extension to fix YouTube Spacebar play/pause function
Correct Pause là gì?
Correct Pause là một tiện ích mở rộng Chrome được phát triển bởi Aljo, và tính năng chính của nó là "Extension to fix YouTube Spacebar play/pause function".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Correct Pause
Tải xuống các tệp mở rộng Correct Pause dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Correct Pause |
ID | bcbjldkfkgpipahfcghnjcmcjnhmigpg |
URL Chính Thức | https://chromewebstore.google.com/detail/correct-pause/bcbjldkfkgpipahfcghnjcmcjnhmigpg |
Mô tả | Extension to fix YouTube Spacebar play/pause function |
Kích Thước Tệp | 8.39 KB |
Số Lần Cài Đặt | 366 |
Phiên Bản Hiện Tại | 1.6 |
Cập Nhật Lần Cuối | 2024-01-26 |
Ngày Phát Hành | 2023-11-16 |
Đánh Giá | 4.60/5 Tổng số 20 Đánh Giá |
Nhà Phát Triển | Aljo |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://justempire.net |
URL Trang Trợ Giúp | https://github.com/MrQuackDuck/CorrectPause |
URL Trang Chính Sách Bảo Mật | https://justempire.net/en/service/14/correct-youtube-pause |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |