Screenshot HQ | Screen Capture Tool

An extension to capture screenshots immediately and share with others

Qu'est-ce que Screenshot HQ | Screen Capture Tool ?

Screenshot HQ | Screen Capture Tool est une extension Chrome développée par https://screenshothq.com, et sa fonction principale est "An extension to capture screenshots immediately and share with others".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Screenshot HQ | Screen Capture Tool

Téléchargez les fichiers d'extension Screenshot HQ | Screen Capture Tool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Screenshot HQ | Screen Capture Tool Screenshot HQ | Screen Capture Tool
ID gcaobbbkobhjfgcjhhnggcnmgmnjdamd
URL Officiel https://chromewebstore.google.com/detail/screenshot-hq-screen-capt/gcaobbbkobhjfgcjhhnggcnmgmnjdamd
Description An extension to capture screenshots immediately and share with others
Taille du Fichier 1.28 MB
Nombre d'Installations 200
Version Actuelle 0.0.4
Dernière Mise à Jour 2020-03-29
Date de Publication 2020-03-29
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://screenshothq.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://screenshothq.com
URL de la Page de Politique de Confidentialité https://gist.githubusercontent.com/Rolstenhouse/2921ff3af4727b881d64860ccb9fbc5e/raw/05a9f710fcd8d25db5ef08a7188ceb4e31a1afbe/Honeycomb%2520privacy%2520policy
Langues Prises en Charge 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\/*"
    ]
}