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]
拡張機能の基本情報
名前 | 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 |
Eメール | [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" ] } ] } |