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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |