Screenshot YouTube
Take a screenshot of any YouTube video with one click.
Screenshot YouTube란 무엇입니까?
Screenshot YouTube은(는) Zdeněk Gromnica | FutureMillennium에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take a screenshot of any YouTube video with one click."입니다.
확장 프로그램 스크린샷
Screenshot YouTube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Adds a “Screenshot” button to the YouTube video player which saves a screenshot of the currently playing video as a file, or copies it to the clipboard, or both. Optionally with keyboard shortcuts, and buttons for changing the playback rate. This extension does not contain any malicious or tracking code. No viruses. No ads. Only good software. Thanks to Ari Velazquez, and Zertsu for their contributions. Consider supporting on Patreon: https://www.patreon.com/FutureMillennium Open source at https://github.com/FutureMillennium/Screenshot-YouTube
확장 프로그램 기본 정보
이름 | Screenshot YouTube |
ID | gjoijpfmdhbjkkgnmahganhoinjjpohk |
공식 URL | https://chromewebstore.google.com/detail/screenshot-youtube/gjoijpfmdhbjkkgnmahganhoinjjpohk |
설명 | Take a screenshot of any YouTube video with one click. |
파일 크기 | 16.15 KB |
설치 횟수 | 446,521 |
현재 버전 | 2.4.1 |
최근 업데이트 | 2021-12-20 |
출시 날짜 | 2020-02-04 |
평점 | 4.45/5 총 366 개의 평점 |
개발자 | Zdeněk Gromnica | FutureMillennium |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.patreon.com/FutureMillennium |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Screenshot YouTube", "version": "2.4.1", "description": "Take a screenshot of any YouTube video with one click.", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "page.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/www.youtube.com\/*", "webNavigation", "storage" ] } |