Lightweight Screenshot

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

O que é Lightweight Screenshot?

Lightweight Screenshot é uma extensão do Chrome desenvolvida por Adam Feor, e sua principal característica é "Take screenshots. Also works for full page and custom-size screenshots.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Lightweight Screenshot

Baixe arquivos de extensão Lightweight Screenshot no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
URL Oficial https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
Descrição Take screenshots. Also works for full page and custom-size screenshots.
Tamanho do Arquivo 39.4 KB
Contagem de Instalações 478
Versão Atual 1.1
Última Atualização 2018-04-29
Data de Publicação 2018-04-29
Classificação 4.00/5 Total de 5 Avaliações
Desenvolvedor Adam Feor
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}