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是由https://screenshothq.com开发的Chrome扩展程序,该扩展的主要功能是“An extension to capture screenshots immediately and share with others”。
扩展截图
下载Screenshot HQ | Screen Capture Tool扩展crx文件
下载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 |
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\/*" ] } |