Chrome Capture - screenshot & GIF

Chrome Capture - screenshot & GIF

Take screenshots & record GIFs instantly! Edit & share seamlessly. Your all-in-one screenshot and screen recording solution.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "version": "3.1.6",
  "options_page": "./layout/options.html",
  "permissions": [
    "activeTab",
    "storage",
    "tabCapture",
    "contextMenus",
    "desktopCapture",
    "identity",
    "scripting",
    "offscreen"
  ],
  "optional_permissions": [
    "tabs",
    "notifications",
    "downloads"
  ],
  "host_permissions": [
    "*://us-central1-chrome-capture.cloudfunctions.net/*",
    "https://www.googleapis.com/",
    "https://apis.google.com/",
    "https://checkout.paddle.com/*",
    "https://y.clarity.ms/*"
  ],
  "oauth2": {
    "client_id": "810313614138-69mb125rarnqt5sc570aid5j6dn86ur3.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive.file",
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuCrlddfGIQ586KY5oU39pfTgcPKKKNdBEUzwj2IM3baL/rpBpQWR7rXSUXFHSgrzDHD5NiKcHYNJ/pJcovHtgddpQsRakYGxBvTLgHb95hxAnJ0roB0JvbMir8DucaJ0VX2AjQGETjVIPuUI2y03eV867rbdLQZVGxO9Z+ZGl2f8WKWmk14yCtN3Ah64YqS3NErp7TjfFf9eqOII1fALPlsTQ9ZO9kVITr56GS53HdMNUUFLL/MKenyuWtNHUFhp+l8p5JHhX5gITrdsKwu4poGJ+1833IKgT4n86eywAUaTbFMgvDZityzDQOOyNZSTjwvUNeXWPUh4RUypPAdLZQIDAQAB",
  "commands": {
    "open_snipping_tool": {
      "suggested_key": {
        "default": "Alt+C"
      },
      "description": "Open snipping tool."
    },
    "screenshot": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Take a screenshot."
    },
    "record_tab": {
      "suggested_key": {
        "default": "Alt+R"
      },
      "description": "Start/stop recording."
    },
    "record_desktop": {
      "description": "Start/stop recording desktop or app."
    },
    "desktop_screenshot": {
      "description": "Take a desktop/app screenshot."
    },
    "full_webpage_screenshot": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Take a full webpage screenshot."
    }
  },
  "background": {
    "service_worker": "dist/background/bundle.js",
    "type": "module"
  },
  "action": {
    "default_title": "__MSG_extension_name__",
    "default_popup": "./layout/popup.html",
    "default_icon": {
      "16": "images/ic_16.png",
      "32": "images/ic_32.png",
      "48": "images/ic_48.png",
      "128": "images/ic_128.png"
    }
  },
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; style-src 'unsafe-inline'; img-src 'self' https: data: blob:;",
    "sandbox": "sandbox allow-forms allow-scripts; script-src 'self' https://cdn.paddle.com https://buy.paddle.com https://m.stripe.com"
  },
  "sandbox": {
    "pages": [
      "/layout/paddle.html"
    ]
  },
  "minimum_chrome_version": "116"
}