Screenshot

Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.

O que é Screenshot?

Screenshot é uma extensão do Chrome desenvolvida por BrowserNative, e sua principal característica é "Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Screenshot

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

                        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.                    

Informações Básicas da Extensão

Nome Screenshot Screenshot
ID mafopchedjkbgkpbbnbgifaolempmdgh
URL Oficial https://chromewebstore.google.com/detail/screenshot/mafopchedjkbgkpbbnbgifaolempmdgh
Descrição Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.
Tamanho do Arquivo 40.96 KB
Contagem de Instalações 8,507
Versão Atual 0.0.5
Última Atualização 2019-11-18
Data de Publicação 2019-11-12
Classificação 4.71/5 Total de 35 Avaliações
Desenvolvedor BrowserNative
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://browsernative.com/screenshot-extension/
URL da Página de Ajuda https://browsernative.com/screenshot-extension/
URL da Página de Política de Privacidade https://browsernative.com/extensions-privacy-policy
Idiomas Suportados 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\/"
}