Immediate Shot
Immediate Shot is a Chrome Extension that takes screenshots quickly with one click.
¿Qué es Immediate Shot?
Immediate Shot es una extensión de Chrome desarrollada por Go Noji, y su función principal es "Immediate Shot is a Chrome Extension that takes screenshots quickly with one click.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Immediate Shot
Descarga archivos de extensión Immediate Shot en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Immediate Shot |
ID | lopfaoacjcbbcfhmjofbfgfmdllclhln |
URL Oficial | https://chromewebstore.google.com/detail/immediate-shot/lopfaoacjcbbcfhmjofbfgfmdllclhln |
Descripción | Immediate Shot is a Chrome Extension that takes screenshots quickly with one click. |
Tamaño del Archivo | 52.35 KB |
Cantidad de Instalaciones | 77 |
Versión Actual | 0.1.1 |
Última Actualización | 2021-08-24 |
Fecha de Publicación | 2020-02-28 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Go Noji |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Go-Noji/Immediate-Shot |
Idiomas Soportados | 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 } |