Screen Capture, Screenshot, Annotations

Screen Capture, Screenshot, Annotations

Get more out of your screen captures!The best screen recorder and screen capture & screenshot tool to record screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "short_name": "Screenshot",
  "offline_enabled": true,
  "version": "1.1.9",
  "manifest_version": 2,
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "128": "images/icons/128.png"
  },
  "background": {
    "scripts": [
      "/js/background.js"
    ]
  },
  "permissions": [
    "*://*/*",
    "storage",
    "activeTab",
    "unlimitedStorage",
    "webRequest",
    "webRequestBlocking"
  ],
  "default_locale": "en",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/contentScript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "images/icons/32.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "/css/injectable.css",
    "editor.html"
  ]
}