Scrnli Screenshot & Screen Video Recorder

Scrnli Screenshot & Screen Video Recorder

Screenshot tool with screen video recording. Take screen capture with further edit, download or text adding. Free Screen Recorder

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "3.3.4",
  "manifest_version": 2,
  "icons": {
    "32": "assets/32.png",
    "64": "assets/64.png",
    "128": "assets/128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabCapture",
    "unlimitedStorage",
    "debugger",
    "desktopCapture",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "__MSG_title__",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "./js/content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "js": [
        "./js/video-recorder-content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "./settings.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://apis.google.com blob: 'unsafe-eval'; object-src 'self';script-src-elem 'self' blob: 'unsafe-eval';",
  "web_accessible_resources": [
    "assets/*.svg",
    "assets/*.png",
    "assets/*.css",
    "assets/*.otf",
    "audio-devices.html",
    "js/ffmpeg-core/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}