Immediate Shot
Immediate Shot is a Chrome Extension that takes screenshots quickly with one click.
Immediate Shot란 무엇입니까?
Immediate Shot은(는) Go Noji에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Immediate Shot is a Chrome Extension that takes screenshots quickly with one click."입니다.
확장 프로그램 스크린샷
Immediate Shot 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Download screenshots with one click According to the situation, ・ Capture the full screen in perfect resolution -Capture the whole screen quickly anyway ・ Capture only the displayed area You can set the selection in advance and also control the file name to download. UPDATE(v0.1.0): Fixed a bug where active tabs were not being captured when multiple windows were open. UPDATE (v0.1.1): You can now set a config value to deal with the error that occurs when doing a fast capture in Chrome 92 or later. Added support for content that cannot be displayed without scrolling the page.
확장 프로그램 기본 정보
이름 | Immediate Shot |
ID | lopfaoacjcbbcfhmjofbfgfmdllclhln |
공식 URL | https://chromewebstore.google.com/detail/immediate-shot/lopfaoacjcbbcfhmjofbfgfmdllclhln |
설명 | Immediate Shot is a Chrome Extension that takes screenshots quickly with one click. |
파일 크기 | 52.35 KB |
설치 횟수 | 77 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2021-08-24 |
출시 날짜 | 2020-02-28 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Go Noji |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Go-Noji/Immediate-Shot |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Immediate Shot", "version": "0.1.1", "description": "__MSG_msg_desc__", "default_locale": "en", "background": { "persistent": false, "scripts": [ "background.bundle.js" ] }, "content_scripts": [ { "js": [ "page.bundle.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": { "128": "128.png" } }, "icons": { "128": "128.png", "48": "48.png", "32": "32.png" }, "permissions": [ "activeTab", "tabs", "storage", "background", "contextMenus", "downloads" ], "options_ui": { "page": "options.html", "chrome_style": true }, "manifest_version": 2 } |