StreamShot: Screenshot for Youtube and Twitch
Take screenshots from any videos & live streams. Works with Youtube & Twitch.
StreamShot: Screenshot for Youtube and Twitch란 무엇입니까?
StreamShot: Screenshot for Youtube and Twitch은(는) ECALL TECHNOLOGIES에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take screenshots from any videos & live streams. Works with Youtube & Twitch."입니다.
확장 프로그램 스크린샷
StreamShot: Screenshot for Youtube and Twitch 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
In no time, capture your favorite moments from any video or live stream on the web. We all love to take screnshots. However, it can be painful process, especially when you dont have the right sofware installed and ready-to-use. StreamShot is the fastest way to take a screenshot from a video or a live stream. For now, StreamShot works on Twitch and Youtube only #FirstRelease. Upcoming features: Keyboard shortcuts Feel free to share your ideas: [email protected] Enjoy! Changelog: - March 01, 2023: Performance optimization and migration to Google latest requirements (v3) - June 07, 2022: Fixed the issue with Youtube Studio Dashboard thanks to users' feedback - February 24, 2021: Twitch vods / recorded videos are now supported.
확장 프로그램 기본 정보
이름 | StreamShot: Screenshot for Youtube and Twitch |
ID | dkgbndlihekhmkfpjaeffcolebphngli |
공식 URL | https://chromewebstore.google.com/detail/streamshot-screenshot-for/dkgbndlihekhmkfpjaeffcolebphngli |
설명 | Take screenshots from any videos & live streams. Works with Youtube & Twitch. |
파일 크기 | 286 KB |
설치 횟수 | 1,445 |
현재 버전 | 0.0.6 |
최근 업데이트 | 2023-03-02 |
출시 날짜 | 2021-01-03 |
평점 | 4.44/5 총 9 개의 평점 |
개발자 | ECALL TECHNOLOGIES |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://ecall.tech |
개인정보 보호 정책 페이지 URL | https://cbs.ecall.tech/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Take screenshots from any videos & live streams. Works with Youtube & Twitch.", "version": "0.0.6", "name": "StreamShot: Screenshot for Youtube and Twitch", "manifest_version": 3, "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-128.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.twitch.tv\/*" ], "exclude_matches": [ "*:\/\/studio.youtube.com\/*" ], "js": [ "jquery-3.5.1.min.js", "FileSaver.min.js", "html2canvas.min.js", "contentScript.bundle.js" ], "run_at": "document_end", "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "jquery-3.5.1.min.js", "FileSaver.min.js", "html2canvas.min.js", "content.styles.css", "icon-128.png", "icon-34.png" ], "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.twitch.tv\/*" ], "exclude_matches": [ "*:\/\/studio.youtube.com\/*" ] } ], "devtools_page": "devtools.html", "permissions": [], "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.twitch.tv\/*" ] } |