Ebetshot
Copy screenshots of videos directly to your clipboard
Ebetshot란 무엇입니까?
Ebetshot은(는) Balduvian에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy screenshots of videos directly to your clipboard"입니다.
확장 프로그램 스크린샷
Ebetshot 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A video screenshotter made especially for use with Anki. Ebetshot is open source! You can see the code on here on GitHub: https://github.com/balduvian/ebetshot. All videos on websites you visit will have a little camera button added in the top right corner. Clicking it will instantly save the current frame of the video to your clipboard. Pinning Ebetshot to your extensions toolbar allows you to access the settings dropdown. You may choose to show or hide the screenshot button and change the output size of your screenshots. It is recommended to choose a small output size if you will be pasting the screenshots into Anki. On websites where there are anti-screenshot measures in place or where videos are hosted cross-site, Ebetshot uses screen recording to screenshot. If Ebetshot asks to record your screen, please select "Chrome Tab," then find the current tab in the screen share popup. Ebetshot is only tested on Youtube and Netflix. It may not work as well on other sites.
확장 프로그램 기본 정보
이름 | Ebetshot |
ID | imhioeojmeppiofbppalcignahcckijc |
공식 URL | https://chromewebstore.google.com/detail/ebetshot/imhioeojmeppiofbppalcignahcckijc |
설명 | Copy screenshots of videos directly to your clipboard |
파일 크기 | 18.3 KB |
설치 횟수 | 42 |
현재 버전 | 1.2.4 |
최근 업데이트 | 2022-06-26 |
출시 날짜 | 2022-01-27 |
개발자 | Balduvian |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/balduvian/ebetshot |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ebetshot", "description": "Copy screenshots of videos directly to your clipboard", "version": "1.2.4", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "css": [ "content.css" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage", "activeTab" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" } }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "commands": { "takeScreenshot": { "suggested_key": "Ctrl+P", "description": "Take a screenshot" } } } |