Youtube™ Shortcuts
Focus on the Youtube player with a the press of a button
Youtube™ Shortcuts란 무엇입니까?
Youtube™ Shortcuts은(는) Daniel Pham에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Focus on the Youtube player with a the press of a button"입니다.
확장 프로그램 스크린샷
Youtube™ Shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A collection of keyboard shortcuts for YouTube to make navigation faster. Show shortcut - Shift + / Default Shortcuts: Focus on the player - "." (dot/period) Unfocus the current element - "Esc" Go to subscription box - "H" Go to user profile - "U" Navigate video list - "J" & "K" Navigate tab strip - "[ & ]" Follow link to new tab - "Shift + Enter" Like the video - "A" Dislike the video - "Z" Subscribe - "S" Add to playlist - "P" Expand video description - "O" Source Code: https://github.com/danhp/youtube-shortcuts
확장 프로그램 기본 정보
이름 | Youtube™ Shortcuts |
ID | fnapinimcdpmgkedhjbfckmpjppnbhba |
공식 URL | https://chrome.google.com/webstore/detail/youtube-shortcuts/fnapinimcdpmgkedhjbfckmpjppnbhba |
설명 | Focus on the Youtube player with a the press of a button |
파일 크기 | 68.71 KB |
설치 횟수 | 548 |
현재 버전 | 1.7.2 |
최근 업데이트 | 2019-11-19 |
출시 날짜 | 2019-11-19 |
평점 | 2.85/5 총 20 개의 평점 |
개발자 | Daniel Pham |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/danhp/youtube-shortcuts |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube\u2122 Shortcuts", "version": "1.7.2", "description": "Focus on the Youtube player with a the press of a button", "homepage_url": "https:\/\/phamdaniel.github.io", "options_page": "options.html", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "run_at": "document_end", "css": [ "lib\/facebox.css", "popup.css" ], "js": [ "lib\/jquery-3.0.0.min.js", "lib\/keymaster.min.js", "lib\/facebox.js", "injected.js" ] } ], "web_accessible_resources": [ "popup.html" ] } |