YouTube Hotkeys
Your YouTube Hotkeys for play, pause, play next video and repeat.
YouTube Hotkeys란 무엇입니까?
YouTube Hotkeys은(는) Giovani Silva에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Your YouTube Hotkeys for play, pause, play next video and repeat."입니다.
확장 프로그램 스크린샷
YouTube Hotkeys 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds hotkeys to your youTube page, now you can control the videos you are watching from anywhere, even when you are away from browser! You can also set your video to repeat, check the extension icon to know when your video is in repeating mode or not. Default Keyboard shortcuts: Next Video : Alt+Shift+Period Play/Pause : Alt+Shift+P Previous Video : Alt+Shift+Comma Repeat Video : Alt+Shift+R To configure go to chrome://extensions/configureCommands
확장 프로그램 기본 정보
이름 | |
ID | nikecddgokknoehjljdkhkilicpcacmo |
공식 URL | https://chrome.google.com/webstore/detail/youtube-hotkeys/nikecddgokknoehjljdkhkilicpcacmo |
설명 | Your YouTube Hotkeys for play, pause, play next video and repeat. |
파일 크기 | 75.94 KB |
설치 횟수 | 785 |
현재 버전 | 1.1 |
최근 업데이트 | 2018-04-06 |
출시 날짜 | 2018-04-06 |
평점 | 4.53/5 총 15 개의 평점 |
개발자 | Giovani Silva |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Hotkeys", "description": "Your YouTube Hotkeys for play, pause, play next video and repeat.", "version": "1.1", "incognito": "split", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "next": { "description": "Next track", "suggested_key": "Alt+Shift+Period" }, "play-pause": { "description": "Play\/Pause", "suggested_key": "Alt+Shift+P" }, "previous": { "description": "Previous track", "suggested_key": "Alt+Shift+Comma" }, "repeat": { "description": "Repeat", "suggested_key": "Alt+Shift+R" } }, "browser_action": { "default_icon": "assets\/icon.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "script.js", "content.js" ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "background", "contentSettings" ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |