ScreenGenius - Screenshot & Video Capture Tool

ScreenGenius - Screenshot & Video Capture Tool

Screenshot & Video Capture Tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ScreenGenius - Screenshot & Video Capture Tool",
  "version": "3.1.5",
  "description": "Screenshot & Video Capture Tool",
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_origin_as_fallback": true,
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/libs/misc/jquery.js",
        "js/libs/misc/fabric.min.js",
        "js/libs/misc/jquery-ui.min.js",
        "js/helper.js",
        "js/libs/screenGenius/captureScreenshot.js",
        "js/libs/screenGenius/recordAnnotation.js",
        "js/libs/screenGenius/recordScreen.js",
        "js/content.js"
      ],
      "all_frames": false
    }
  ],
  "commands": {
    "run-foo": {
      "suggested_key": {
        "default": "Alt+Shift+Q",
        "mac": "Alt+Shift+Q"
      },
      "description": "open popup"
    },
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+Shift+X",
        "mac": "Alt+Shift+X",
        "chromeos": "Alt+Shift+X",
        "linux": "Alt+Shift+X"
      }
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https://apis.google.com/;"
  },
  "oauth2": {
    "client_id": "289798756049-kb8flpfrcnsib8kviihvi4ijo50njb2b.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "email",
      "profile"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting",
    "unlimitedStorage",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "author": "Quixy",
  "short_name": "ScreenGenius",
  "web_accessible_resources": [
    {
      "resources": [
        "/fonts/*",
        "/images/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "ScreenGenius - Screenshot & Video Capture Tool",
    "default_icon": {
      "16": "/images/logo-16.png",
      "32": "/images/logo-32.png",
      "48": "/images/logo-48.png",
      "128": "/images/logo-128.png"
    }
  },
  "icons": {
    "16": "/images/logo-16.png",
    "32": "/images/logo-32.png",
    "48": "/images/logo-48.png",
    "128": "/images/logo-128.png"
  }
}