YTPlayer
Youtube Player
YTPlayer란 무엇입니까?
YTPlayer은(는) fdal omar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Youtube Player"입니다.
확장 프로그램 스크린샷
YTPlayer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
YTPlayer helps you control all of your opened Youtube videos either using keyboard shortcuts or directly using its popup window. The player has audio controls + focus button which focus on a tab, skip button which skip the ad if any, and a button to show suggested youtube videos (exclamation mark icon).
확장 프로그램 기본 정보
이름 | |
ID | pakpfpcgppmjfecdmicncjoihpeledem |
공식 URL | https://chromewebstore.google.com/detail/ytplayer/pakpfpcgppmjfecdmicncjoihpeledem |
설명 | Youtube Player |
파일 크기 | 112 KB |
설치 횟수 | 1,397 |
현재 버전 | 1.1 |
최근 업데이트 | 2020-10-04 |
출시 날짜 | 2020-08-30 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | fdal omar |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YTPlayer", "description": "Youtube Player", "version": "1.1", "options_page": "pages\/options\/opts.html", "browser_action": { "default_icon": "assets\/icons\/128.png", "default_popup": "pages\/popup\/popup.html", "default_title": "YTPlayer" }, "commands": { "Play": { "suggested_key": { "windows": "Ctrl+Shift+Y" }, "description": "Play the video", "global": true }, "Next": { "suggested_key": { "windows": "Ctrl+Shift+F" }, "description": "Next video", "global": true }, "Reload": { "suggested_key": { "windows": "Ctrl+Shift+E" }, "description": "Load\/Reload video", "global": true }, "Skip": { "suggested_key": { "windows": "Ctrl+Shift+K" }, "description": "Skip Ad", "global": true } }, "icons": { "16": "assets\/icons\/16.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*" ], "js": [ "pages\/cs\/cs.js" ] } ], "permissions": [ "tabs", "https:\/\/www.youtube.com\/watch*", "notifications" ], "background": { "scripts": [ "pages\/bg\/background.js" ], "persistent": false } } |