Correct Pause
Extension to fix YouTube Spacebar play/pause function
什么是Correct Pause?
Correct Pause是由Aljo开发的Chrome扩展程序,该扩展的主要功能是“Extension to fix YouTube Spacebar play/pause function”。
扩展截图
下载Correct Pause扩展crx文件
下载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] 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |