YouTube Sampler
Create customized queue points of numeric keys (0~9) for YouTube video.
YouTube Sampler란 무엇입니까?
YouTube Sampler은(는) vibert.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create customized queue points of numeric keys (0~9) for YouTube video."입니다.
확장 프로그램 스크린샷
YouTube Sampler 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Make YouTube videos your biggest sample inspiration database. You can now share queue points with your friends with v.0.2. YouTube has default key mapping on numeric keys to for jumping to different part of a video. "YouTube Sampler" help to customize the queue points. You can also hold the "shift" key to fine tune the position. The extension will save your changes automatically in your browser.
확장 프로그램 기본 정보
이름 | YouTube Sampler |
ID | jfkkfiknnoojphipaipdojadlpdeljbj |
공식 URL | https://chromewebstore.google.com/detail/youtube-sampler/jfkkfiknnoojphipaipdojadlpdeljbj |
설명 | Create customized queue points of numeric keys (0~9) for YouTube video. |
파일 크기 | 537 KB |
설치 횟수 | 464 |
현재 버전 | 0.2 |
최근 업데이트 | 2021-05-02 |
출시 날짜 | 2021-03-11 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | vibert.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/vibertthio/yt-sampler |
도움말 페이지 URL | https://github.com/vibertthio/yt-sampler/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Sampler", "version": "0.2", "description": "Create customized queue points of numeric keys (0~9) for YouTube video.", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/vibert16.png", "32": "\/images\/vibert32.png", "48": "\/images\/vibert48.png", "128": "\/images\/vibert128.png" } }, "icons": { "16": "\/images\/vibert16.png", "32": "\/images\/vibert32.png", "48": "\/images\/vibert48.png", "128": "\/images\/vibert128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "MacCtrl+Shift+Y" } } }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "styles.css" ], "js": [ "Tone.js", "content_script.js" ] } ] } |