Monosnap

Monosnap

Capture pages or blocks with the awesome smart screen capture tool!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "version": "1.8.11",
  "homepage_url": "https://monosnap.com",
  "default_locale": "en",
  "icons": {
    "32": "/images/logo_32.png",
    "48": "/images/logo_48.png",
    "128": "/images/logo_128.png"
  },
  "minimum_chrome_version": "50",
  "incognito": "split",
  "background": {
    "page": "background.html",
    "scripts": [],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "/images/logo_128.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_app_default_title__"
  },
  "options_ui": {
    "page": "settings.html"
  },
  "content_scripts": [
    {
      "js": [
        "/content_scripts/resnap.js"
      ],
      "all_frames": false,
      "run_at": "document_end",
      "matches": [
        "*://*.monosnap.com/file/*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "/content_scripts/chromeOSPlugin.js"
      ],
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "css": [
        "/content_scripts/generic.css"
      ],
      "js": [
        "/libs/jquery/jquery-1.12.4.min.js",
        "/libs/ga.js",
        "/scripts/commons/hotkeys.js",
        "/content_scripts/area_capture.js",
        "/content_scripts/generic.js",
        "/scripts/background/log.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "<all_urls>",
    "clipboardWrite",
    "fileBrowserHandler",
    "downloads",
    "storage",
    "notifications",
    "windows",
    "tabs",
    "desktopCapture",
    "contextMenus",
    "system.cpu",
    "system.memory",
    "system.storage",
    "system.display",
    "alarms"
  ],
  "file_browser_handlers": [
    {
      "id": "open_in_monosnap",
      "default_title": "__MSG_chrome_os_fs_open_image__",
      "file_filters": [
        "filesystem:*.jpg",
        "filesystem:*.jpeg",
        "filesystem:*.png",
        "filesystem:*.bmp",
        "filesystem:*.mp4",
        "filesystem:*.webm"
      ]
    },
    {
      "id": "upload_file",
      "default_title": "__MSG_chrome_os_fs_upload_file__",
      "file_filters": [
        "filesystem:*.*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ok1static.oktacdn.com 'unsafe-eval' 'wasm-eval' blob:; object-src 'self' blob:",
  "web_accessible_resources": [
    "/content_scripts/generic.css",
    "/libs/jquery/jquery-1.12.4.min.js",
    "/okta.html"
  ],
  "commands": {
    "capture_fullscreen": {
      "suggested_key": {
        "default": "Ctrl+Shift+7",
        "mac": "Ctrl+Shift+7"
      },
      "description": "__MSG_chrome_hotkey_desktop_screenshot__"
    },
    "record_desktop": {
      "suggested_key": {
        "default": "Ctrl+Shift+8",
        "mac": "Ctrl+Shift+8"
      },
      "description": "__MSG_chrome_hotkey_screencast_init__"
    },
    "record_start_stop": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      },
      "description": "__MSG_chrome_hotkey_screencast_toggle__"
    }
  }
}