Screenshot HQ | Screen Capture Tool

An extension to capture screenshots immediately and share with others

Τι είναι το Screenshot HQ | Screen Capture Tool;

Το Screenshot HQ | Screen Capture Tool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://screenshothq.com, και η κύρια λειτουργία του είναι "An extension to capture screenshots immediately and share with others".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Screenshot HQ | Screen Capture Tool

Λήψη αρχείων επέκτασης Screenshot HQ | Screen Capture Tool σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Screenshot HQ | Screen Capture Tool Screenshot HQ | Screen Capture Tool
ID gcaobbbkobhjfgcjhhnggcnmgmnjdamd
Επίσημο URL https://chromewebstore.google.com/detail/screenshot-hq-screen-capt/gcaobbbkobhjfgcjhhnggcnmgmnjdamd
Περιγραφή An extension to capture screenshots immediately and share with others
Μέγεθος Αρχείου 1.28 MB
Αριθμός Εγκαταστάσεων 200
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2020-03-29
Ημερομηνία Δημοσίευσης 2020-03-29
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής https://screenshothq.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://screenshothq.com
URL της Σελίδας Πολιτικής Απορρήτου https://gist.githubusercontent.com/Rolstenhouse/2921ff3af4727b881d64860ccb9fbc5e/raw/05a9f710fcd8d25db5ef08a7188ceb4e31a1afbe/Honeycomb%2520privacy%2520policy
Υποστηριζόμενες Γλώσσες 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\/*"
    ]
}