NinjaCapture - Quick & Easy Screen Capture

NinjaCapture - Quick & Easy Screen Capture

Grab screenshots, annotate, and share screens easier than ever before with screen capture Chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NinjaCapture - Quick & Easy Screen Capture",
  "description": "Grab screenshots, annotate, and share screens easier than ever before with screen capture Chrome extension",
  "version": "1.1.3.9",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_title": "NinjaCapture",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "notifications",
    "activeTab",
    "cookies",
    "downloads",
    "<all_urls>",
    "clipboardRead",
    "externally_connectable"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "cs/script.js"
      ],
      "css": [
        "/cs/style.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.500apps.com/*",
      "http://localhost/*",
      "https://*.500conference.com/*"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      },
      "description": "Run to open extension popup."
    }
  }
}