Screenshot HQ | Screen Capture Tool
An extension to capture screenshots immediately and share with others
Was ist Screenshot HQ | Screen Capture Tool?
Screenshot HQ | Screen Capture Tool ist eine Chrome-Erweiterung, die von https://screenshothq.com entwickelt wurde, und ihr Hauptmerkmal ist "An extension to capture screenshots immediately and share with others".
Erweiterungsscreenshots
Screenshot HQ | Screen Capture Tool-Erweiterungs-CRX-Datei herunterladen
Laden Sie Screenshot HQ | Screen Capture Tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gcaobbbkobhjfgcjhhnggcnmgmnjdamd |
| Offizielle URL | https://chromewebstore.google.com/detail/screenshot-hq-screen-capt/gcaobbbkobhjfgcjhhnggcnmgmnjdamd |
| Beschreibung | An extension to capture screenshots immediately and share with others |
| Dateigröße | 1.28 MB |
| Installationsanzahl | 200 |
| Aktuelle Version | 0.0.4 |
| Letztes Update | 2020-03-29 |
| Veröffentlichungsdatum | 2020-03-29 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | https://screenshothq.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://screenshothq.com |
| URL der Datenschutzrichtlinien-Seite | https://gist.githubusercontent.com/Rolstenhouse/2921ff3af4727b881d64860ccb9fbc5e/raw/05a9f710fcd8d25db5ef08a7188ceb4e31a1afbe/Honeycomb%2520privacy%2520policy |
| Unterstützte Sprachen | 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\/*"
]
} | |