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