Screenshot & Screen Recorder

Screenshot & Screen Recorder

Screen recorder and screen capture, screenshot tool to record screen. Edit, drop comments and share. Take screenshot

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_default_title__",
  "default_locale": "en",
  "version": "1.0.6",
  "description": "__MSG_description__",
  "background": {
    "page": "background/background.html"
  },
  "options_page": "options/options.html",
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_icon": "assets/logo/16.png"
  },
  "icons": {
    "16": "assets/logo/16.png",
    "48": "assets/logo/48.png",
    "128": "assets/logo/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "js": [
        "content/content.bundle.js",
        "shortScreenContent/shortScreenContent.bundle.js"
      ],
      "all_frames": false
    }
  ],
  "manifest_version": 2,
  "permissions": [
    "downloads",
    "tabs",
    "storage",
    "<all_urls>",
    "tabCapture",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "backgroud/background.js",
    "audiosources/audiosources.html",
    "audiosources/audiosources.js"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}