Screensync Screenshot App Deluxe

Screensync Screenshot App Deluxe

Capture & Share Your Screen With Ease

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "scripts/jquery.js",
      "scripts/background.js",
      "scripts/api.js"
    ]
  },
  "browser_action": {
    "default_popup": "main.html"
  },
  "description": "Capture & Share Your Screen With Ease",
  "icons": {
    "16": "images/icon-19.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 2,
  "name": "Screensync Screenshot App Deluxe",
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/jquery.js",
        "scripts/script.js"
      ],
      "css": [
        "css/mycss.css"
      ]
    }
  ],
  "version": "2.1.5",
  "options_page": "options.html",
  "commands": {
    "captureregion": {
      "suggested_key": {
        "default": "Ctrl+Shift+V"
      },
      "description": "It captures a region of your choice."
    }
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://matomo.screensyncextension.com/; object-src 'self'"
}