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

下載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 Screenshot HQ | Screen Capture Tool
ID gcaobbbkobhjfgcjhhnggcnmgmnjdamd
官方網址 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\/*"
    ]
}