Screenshot
Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.
¿Qué es Screenshot?
Screenshot es una extensión de Chrome desarrollada por BrowserNative, y su función principal es "Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Screenshot
Descarga archivos de extensión Screenshot 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
Users can select screenshot file format (PNG or JPEG) from the Options. After capturing the screenshot, extension saves it. You can opt to see it in a new tab. Extremely fast, light-weight and privacy friendly extension by BrowserNative.
Información Básica de la Extensión
Nombre | Screenshot |
ID | mafopchedjkbgkpbbnbgifaolempmdgh |
URL Oficial | https://chromewebstore.google.com/detail/screenshot/mafopchedjkbgkpbbnbgifaolempmdgh |
Descripción | Quickly take screenshot of current tab. Keyboard Commnd: Alt+P. |
Tamaño del Archivo | 40.96 KB |
Cantidad de Instalaciones | 8,507 |
Versión Actual | 0.0.5 |
Última Actualización | 2019-11-18 |
Fecha de Publicación | 2019-11-12 |
Calificación | 4.71/5 Total de 35 Calificaciones |
Desarrollador | BrowserNative |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://browsernative.com/screenshot-extension/ |
URL de la Página de Ayuda | https://browsernative.com/screenshot-extension/ |
URL de la Página de Política de Privacidad | https://browsernative.com/extensions-privacy-policy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screenshot", "description": "Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.", "version": "0.0.5", "manifest_version": 2, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "static\/128.png", "default_title": "Take Screenshot" }, "icons": { "48": "static\/48.png", "128": "static\/128.png" }, "permissions": [ "activeTab", "downloads" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+P" } } }, "options_ui": { "page": "options.html", "open_in_tab": true }, "homepage_url": "https:\/\/browsernative.com\/screenshot-extension\/" } |