Screenshot Tool

Screenshot Tool is an easy way to take a screenshot of an entire page or part.

O que é Screenshot Tool?

Screenshot Tool é uma extensão do Chrome desenvolvida por fullscreenshoter, e sua principal característica é "Screenshot Tool is an easy way to take a screenshot of an entire page or part.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Screenshot Tool

Baixe arquivos de extensão Screenshot Tool 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 any screenshots from your favorite sites with the screenshot tool.

The extension is very easy to use. First you need to open the page from which you want to take a screenshot. Then click the extension icon in your browser and in the window that appears, select the desired screenshot view. You can make both the visible part of the page and the entire page of the site. Click on the button and after a few seconds the file will start downloading at the bottom of the browser window in jpeg format.

The extension is useful for office workers when you need to take a screenshot to complete a task. And also all kinds of screenshots for preparing presentations. The Screenshot tool has no functionality for cropping, scaling, or drawing on the finished screenshot.                    

Informações Básicas da Extensão

Nome Screenshot Tool Screenshot Tool
ID findidccpcggilpobkmigcgniphhkdpj
URL Oficial https://chrome.google.com/webstore/detail/findidccpcggilpobkmigcgniphhkdpj
Descrição Screenshot Tool is an easy way to take a screenshot of an entire page or part.
Tamanho do Arquivo 46.07 KB
Contagem de Instalações 68
Versão Atual 0.0.1
Última Atualização 2021-02-22
Data de Publicação 2021-02-16
Desenvolvedor fullscreenshoter
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screenshot Tool",
    "description": "Screenshot Tool is an easy way to take a screenshot of an entire page or part.",
    "manifest_version": 2,
    "version": "0.0.1",
    "browser_action": {
        "default_icon": "images\/icon_128.png",
        "default_popup": "popup.html"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "selector.js",
                "mousetrap.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png",
        "256": "images\/icon_256.png"
    },
    "permissions": [
        "activeTab",
        ""
    ]
}