Screenshot HQ | Screen Capture Tool
An extension to capture screenshots immediately and share with others
Wat is Screenshot HQ | Screen Capture Tool?
Screenshot HQ | Screen Capture Tool is een Chrome-extensie ontwikkeld door https://screenshothq.com, en de belangrijkste functie is "An extension to capture screenshots immediately and share with others".
Extensie Screenshots
Download het CRX-bestand van de extensie Screenshot HQ | Screen Capture Tool
Download Screenshot HQ | Screen Capture Tool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Screenshot HQ | Screen Capture Tool |
ID | gcaobbbkobhjfgcjhhnggcnmgmnjdamd |
Officiële URL | https://chromewebstore.google.com/detail/screenshot-hq-screen-capt/gcaobbbkobhjfgcjhhnggcnmgmnjdamd |
Beschrijving | An extension to capture screenshots immediately and share with others |
Bestandsgrootte | 1.28 MB |
Aantal Installaties | 200 |
Huidige Versie | 0.0.4 |
Laatst Bijgewerkt | 2020-03-29 |
Publicatiedatum | 2020-03-29 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://screenshothq.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://screenshothq.com |
URL van de Privacybeleid Pagina | https://gist.githubusercontent.com/Rolstenhouse/2921ff3af4727b881d64860ccb9fbc5e/raw/05a9f710fcd8d25db5ef08a7188ceb4e31a1afbe/Honeycomb%2520privacy%2520policy |
Ondersteunde Talen | 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\/*" ] } |