Screenshot HQ | Screen Capture Tool

An extension to capture screenshots immediately and share with others

O que é Screenshot HQ | Screen Capture Tool?

Screenshot HQ | Screen Capture Tool é uma extensão do Chrome desenvolvida por https://screenshothq.com, e sua principal característica é "An extension to capture screenshots immediately and share with others".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Screenshot HQ | Screen Capture Tool

Baixe arquivos de extensão Screenshot HQ | Screen Capture 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

                        Screenshot HQ is a way to draw and capture a snippet of your screen, by using cmd+shift+2.

It then creates a shareable link with the original image, and a link back to the document where you took the screenshot.                    

Informações Básicas da Extensão

Nome Screenshot HQ | Screen Capture Tool Screenshot HQ | Screen Capture Tool
ID gcaobbbkobhjfgcjhhnggcnmgmnjdamd
URL Oficial https://chromewebstore.google.com/detail/screenshot-hq-screen-capt/gcaobbbkobhjfgcjhhnggcnmgmnjdamd
Descrição An extension to capture screenshots immediately and share with others
Tamanho do Arquivo 1.28 MB
Contagem de Instalações 200
Versão Atual 0.0.4
Última Atualização 2020-03-29
Data de Publicação 2020-03-29
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://screenshothq.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://screenshothq.com
URL da Página de Política de Privacidade https://gist.githubusercontent.com/Rolstenhouse/2921ff3af4727b881d64860ccb9fbc5e/raw/05a9f710fcd8d25db5ef08a7188ceb4e31a1afbe/Honeycomb%2520privacy%2520policy
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "An extension to capture screenshots immediately and share with others",
    "version": "0.0.4",
    "name": "Screenshot HQ | Screen Capture Tool",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.screenshothq.com\/*",
                "http:\/\/localhost\/*"
            ],
            "js": [
                "preloadImageContentScript.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite",
        "https:\/\/www.screenshothq.com\/*",
        "http:\/\/localhost\/*"
    ],
    "commands": {
        "start_capture": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "Command+Shift+2"
            },
            "description": "Start screen capture"
        }
    },
    "web_accessible_resources": [
        "icon-34.png",
        "\/images\/*"
    ]
}