Lightweight Screenshot

Take screenshots. Also works for full page and custom-size screenshots.

¿Qué es Lightweight Screenshot?

Lightweight Screenshot es una extensión de Chrome desarrollada por Adam Feor, y su función principal es "Take screenshots. Also works for full page and custom-size screenshots.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Lightweight Screenshot

Descarga archivos de extensión Lightweight 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

                        A simple screenshot extension for Chrome. Supports taking screenshots of the current window, of an entire page (scrolling) and of a custom area.                    

Información Básica de la Extensión

Nombre Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
URL Oficial https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
Descripción Take screenshots. Also works for full page and custom-size screenshots.
Tamaño del Archivo 39.4 KB
Cantidad de Instalaciones 478
Versión Actual 1.1
Última Actualización 2018-04-29
Fecha de Publicación 2018-04-29
Calificación 4.00/5 Total de 5 Calificaciones
Desarrollador Adam Feor
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lightweight Screenshot",
    "description": "Take screenshots. Also works for full page and custom-size screenshots.",
    "version": "1.1",
    "icons": {
        "19": "images\/monitoriconsmall.png",
        "48": "images\/monitoricon48.png",
        "128": "images\/monitoricon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/cus.png",
        "image\/vis.png",
        "images\/full.png",
        "images\/check.png",
        "images\/cross.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/monitoriconsmall.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "",
        "downloads"
    ]
}