YouTube - Pause with Space Properly
Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.
YouTube - Pause with Space Properlyとは何ですか?
YouTube - Pause with Space ProperlyはJames Forsythによって開発されたChromeの拡張機能で、その主な機能は「Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.」です。
YouTube - Pause with Space Properly拡張機能のCRXファイルをダウンロード
YouTube - Pause with Space Properly拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Fixes the common issue with pressing space to pause YouTube videos. This extension refocuses the video when pressing space (unless you're trying to type), preventing the default behaviour that shoots halfway down the webpage. Simple fix for a simple problem. Don't know why YouTube won't fix things themselves.
拡張機能の基本情報
名前 | |
ID | cdidekkahbpdfkaegopcnpkobibblmof |
公式URL | https://chrome.google.com/webstore/detail/youtube-pause-with-space/cdidekkahbpdfkaegopcnpkobibblmof |
説明 | Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling. |
ファイルサイズ | 19.83 KB |
インストール数 | 151 |
現在のバージョン | 1.0.0 |
最終更新日 | 2017-12-13 |
公開日 | 2017-12-13 |
評価 | 3.80/5 合計 10 レビュー |
開発者 | James Forsyth |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube - Pause with Space Properly", "description": "Allows you to pause\/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.", "version": "1.0.0", "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "space.js" ], "run_at": "document_start" } ], "icons": { "128": "space-128.png", "38": "space-38.png", "19": "space-19.png" } } |