YouTube Screenshot
Save Take screenshots from YouTube video
YouTube Screenshot란 무엇입니까?
YouTube Screenshot은(는) info에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save Take screenshots from YouTube video"입니다.
확장 프로그램 스크린샷
YouTube Screenshot 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A small add-on to take screenshots of YouTube videos with one click. - This add-on is completely free to use. - This add-on adds an extra button in the YouTube player to take a screenshot of the video.
확장 프로그램 기본 정보
이름 | |
ID | mdblbmmnmgoglgggphofecocdniamacg |
공식 URL | https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg |
설명 | Save Take screenshots from YouTube video |
파일 크기 | 164 KB |
설치 횟수 | 230 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2022-12-05 |
출시 날짜 | 2022-12-05 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | info |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Screenshot", "description": "Save Take screenshots from YouTube video", "manifest_version": 3, "version": "2.0.0", "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "permissions": [ "alarms", "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "options_ui": { "page": "options\/index.html" }, "icons": { "128": "icons\/icon.png" } } |