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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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\/*" ] } |