Printscreen YouTube
Take a printscreen of any YouTube video.
Printscreen YouTube란 무엇입니까?
Printscreen YouTube은(는) https://limbuscode.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take a printscreen of any YouTube video."입니다.
확장 프로그램 스크린샷
Printscreen YouTube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It places a button called "Printscreen" on the Youtube player which saves a screenshot of the currently playing video as a file or copies it to the clipboard. Get a Preview of the printscreen image that you took. Go to chrome://extensions/shortcuts to customize screenshot keyboard shortcut (Default is: Alt+S) Choose which format the file will be: PNG, JPG, or WEBP. (Default is: PNG) Consider supporting on buymeacoffee: https://bit.ly/limbuscode-buymeacoffee Changelog; v0.0.1: - First version
확장 프로그램 기본 정보
이름 | Printscreen YouTube |
ID | ledkfpmgmimfleobfeepelhihghneckg |
공식 URL | https://chromewebstore.google.com/detail/printscreen-youtube/ledkfpmgmimfleobfeepelhihghneckg |
설명 | Take a printscreen of any YouTube video. |
파일 크기 | 34.16 KB |
설치 횟수 | 49 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2024-01-05 |
출시 날짜 | 2022-10-25 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://limbuscode.com |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://docs.google.com/forms/d/e/1FAIpQLSd_7IU5Rie2lqsxNA7TunGaSlgbmZOcORmtzrtR5fsiju07JQ/viewform?usp=pp_url&entry.937029896=Printscreen+YouTube |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Printscreen YouTube", "version": "0.0.1", "description": "Take a printscreen of any YouTube video.", "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "page.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "commands": { "ss": { "suggested_key": "Alt+S", "description": "Screenshot" } }, "permissions": [ "webNavigation", "storage", "scripting", "tabs" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "icons": { "16": "assets\/img\/16.png", "24": "assets\/img\/24.png", "32": "assets\/img\/32.png", "48": "assets\/img\/48.png", "64": "assets\/img\/64.png", "128": "assets\/img\/128.png" } } |