Screenshot HQ | Screen Capture Tool

Screenshot HQ | Screen Capture Tool

An extension to capture screenshots immediately and share with others

Merlin
Additional files are visible only to premium users

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/*"
  ]
}