ScreenPal - Screen Recorder & Video Editor

ScreenPal - Screen Recorder & Video Editor

Record your screen & webcam, take screenshots, edit videos & images - easy & free!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ScreenPal - Screen Recorder & Video Editor",
  "description": "Record your screen & webcam, take screenshots, edit videos & images - easy & free!",
  "short_name": "ScreenPal",
  "manifest_version": 2,
  "version": "2.0.3",
  "version_name": "2.0.3",
  "icons": {
    "16": "/extension/icon/SP_16.png",
    "48": "/extension/icon/SP_48.png",
    "128": "/extension/icon/SP_128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "desktopCapture",
    "tabCapture",
    "webNavigation",
    "clipboardRead",
    "clipboardWrite",
    "contextMenus",
    "unlimitedStorage",
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "css": [
        "app/css/SP-Main.css",
        "app/css/opentip.css",
        "app/css/basicLightbox.min.css"
      ],
      "js": [
        "extension/SP-Runtime.js",
        "app/js/SP-Main.js",
        "app/js/lib/opentip-native-inject.min.js",
        "app/js/lib/basicLightbox.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_title": "ScreenPal - Screen Recorder & Video Editor"
  },
  "web_accessible_resources": [
    "app/editor*.html",
    "app/tooltip.html",
    "app/tooltip_*.html",
    "app/som_rec_controls.html",
    "app/flyout*.html",
    "app/player.html",
    "app/pip.html",
    "app/popup_menu*.html",
    "app/message_*.html",
    "app/checkWhich.html",
    "app/preview-thumbnail.html",
    "app/draw.html",
    "app/effects.html",
    "app/effects_menu.html"
  ],
  "background": {
    "scripts": [
      "config-json.js",
      "app/js/lib/ua-parser.min.js",
      "app/js/lib/jszip.min.js",
      "app/js/lib/jsGif/b64.min.js",
      "app/js/lib/jsGif/LZWEncoder.min.js",
      "app/js/lib/jsGif/NeuQuant.min.js",
      "app/js/lib/jsGif/GIFEncoder.min.js",
      "app/js/lib/adapter-latest.min.js",
      "app/js/lib/aws-sdk.min.js",
      "app/js/lib/Rx.min.js",
      "app/js/RuntimeParams.js",
      "app/js/Logger.js",
      "app/js/LocalFile.js",
      "app/js/JPGPreview.js",
      "app/js/GIFPreview.js",
      "app/js/Utils.js",
      "app/js/SOM.js",
      "app/js/ScreenRec.js",
      "app/js/RecTime.js",
      "app/js/Uploader.js",
      "app/js/TooltipRecService.js",
      "app/js/MicMonitor.js",
      "app/js/Config.js",
      "app/js/CountDown.js",
      "app/js/Preferences.js",
      "app/js/DeviceManager.js",
      "app/js/DomainSettings.js",
      "app/js/EffectSettings.js",
      "app/js/background.js"
    ],
    "persistent": false
  },
  "commands": {
    "effects-1": {
      "suggested_key": {
        "default": "Alt+1",
        "chromeos": "Alt+Shift+1"
      },
      "description": "Start/Stop effect #1 while recording."
    },
    "effects-2": {
      "suggested_key": {
        "default": "Alt+2",
        "chromeos": "Alt+Shift+2"
      },
      "description": "Start/Stop effect #2 while recording."
    },
    "effects-3": {
      "suggested_key": {
        "default": "Alt+3",
        "chromeos": "Alt+Shift+3"
      },
      "description": "Start/Stop effect #3 while recording."
    }
  }
}