YouTube Playback Position with Side Buttons
When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video
YouTube Playback Position with Side Buttons란 무엇입니까?
YouTube Playback Position with Side Buttons은(는) sanitysign에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video"입니다.
확장 프로그램 스크린샷
YouTube Playback Position with Side Buttons 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Allows to navigate YouTube videos using mouse side-buttons similar to many video players. Navigation will work if the video is in full screen mode or cursor hovers the video. Extension’s popup allows to change skip time.
확장 프로그램 기본 정보
이름 | YouTube Playback Position with Side Buttons |
ID | gdgfjcfcfkhoiebkflodhommhllbjnjd |
공식 URL | https://chromewebstore.google.com/detail/youtube-playback-position/gdgfjcfcfkhoiebkflodhommhllbjnjd |
설명 | When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video |
파일 크기 | 21.13 KB |
설치 횟수 | 97 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2022-11-04 |
출시 날짜 | 2022-03-17 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | sanitysign |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://sanitysign.github.io/extensions-privacy-policies |
지원되는 언어 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ], "event_rules": [ { "event": "declarativeContent.onPageChanged", "actions": [ { "type": "declarativeContent.ShowPageAction" } ], "conditions": [ { "type": "declarativeContent.PageStateMatcher", "pageUrl": { "hostEquals": "www.youtube.com" } } ] } ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "img\/mousetube-16.png", "32": "img\/mousetube-32.png", "48": "img\/mousetube-48.png", "128": "img\/mousetube-128.png" } }, "icons": { "16": "img\/mousetube-16.png", "32": "img\/mousetube-32.png", "48": "img\/mousetube-48.png", "128": "img\/mousetube-128.png" }, "default_locale": "en", "externally_connectable": { "ids": [] } } |