Simple Page Screenshot

Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.

O que é Simple Page Screenshot?

Simple Page Screenshot é uma extensão do Chrome desenvolvida por paradoxxxzero, e sua principal característica é "Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Simple Page Screenshot

Baixe arquivos de extensão Simple Page 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

                        Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.


Right click on the image to save it or copy the datu URL with Copy image URL                    

Informações Básicas da Extensão

Nome Simple Page Screenshot Simple Page Screenshot
ID llhehkgnfcfjbpknaljplknmimhggbpa
URL Oficial https://chrome.google.com/webstore/detail/simple-page-screenshot/llhehkgnfcfjbpknaljplknmimhggbpa
Descrição Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.
Tamanho do Arquivo 8.71 KB
Contagem de Instalações 255
Versão Atual 1.0.0
Última Atualização 2014-04-04
Data de Publicação 2014-04-04
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor paradoxxxzero
Tipo de Pagamento free
Site da Extensão https://github.com/paradoxxxzero/simple_page_screenshot
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Page Screenshot",
    "version": "1.0.0",
    "author": "Florian Mounier - paradoxxxzero",
    "homepage_url": "https:\/\/github.com\/paradoxxxzero\/simple_page_screenshot",
    "description": "Take a screenshot in your browser from a region and display it. You can then save the capture or copy the base 64 data URL.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        ""
    ]
}