Screenshot HQ | Screen Capture Tool

An extension to capture screenshots immediately and share with others

Co je Screenshot HQ | Screen Capture Tool?

Screenshot HQ | Screen Capture Tool je rozšíření Chrome vyvinuté https://screenshothq.com, a jeho hlavní funkcí je „An extension to capture screenshots immediately and share with others“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Screenshot HQ | Screen Capture Tool

Stáhněte si soubory rozšíření Screenshot HQ | Screen Capture Tool ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Screenshot HQ | Screen Capture Tool Screenshot HQ | Screen Capture Tool
ID gcaobbbkobhjfgcjhhnggcnmgmnjdamd
Oficiální URL https://chromewebstore.google.com/detail/screenshot-hq-screen-capt/gcaobbbkobhjfgcjhhnggcnmgmnjdamd
Popis An extension to capture screenshots immediately and share with others
Velikost souboru 1.28 MB
Počet instalací 200
Aktuální Verze 0.0.4
Poslední Aktualizace 2020-03-29
Datum Vydání 2020-03-29
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://screenshothq.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://screenshothq.com
URL Stránky Zásad Ochrany Soukromí https://gist.githubusercontent.com/Rolstenhouse/2921ff3af4727b881d64860ccb9fbc5e/raw/05a9f710fcd8d25db5ef08a7188ceb4e31a1afbe/Honeycomb%2520privacy%2520policy
Podporované Jazyky 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\/*"
    ]
}