Webcam + Screen Video Recorder Video Editor

Webcam + Screen Video Recorder Video Editor

Screen video recorder which allows you to create, edit and share videos in minutes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "3.2.7",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "permissions": [
    "desktopCapture",
    "storage",
    "*://*/*",
    "tabs",
    "notifications",
    "cookies",
    "downloads",
    "unlimitedStorage",
    "tabCapture",
    "activeTab"
  ],
  "icons": {
    "128": "sx_logo_128px.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "flat_clapboard_128.png"
    },
    "default_popup": "index.html",
    "default_title": "StoryXpress Screen Recorder"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "chromeos": "Alt+C",
        "linux": "Alt+C",
        "mac": "Alt+C",
        "windows": "Alt+C"
      }
    },
    "cancel-recording": {
      "suggested_key": {
        "chromeos": "Alt+X",
        "linux": "Alt+X",
        "mac": "Alt+X",
        "windows": "Alt+X"
      },
      "description": "Cancel a Recording"
    }
  },
  "background": {
    "scripts": [
      "background.bundle.js",
      "socket.io.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "cameraOnly.html",
    "cameraOnly.bundle.js",
    "camBox.html",
    "camBox.bundle.js",
    "countDown.html",
    "countDown.bundle.js",
    "faceOnlyIntro.html",
    "faceOnlyIntro.js",
    "tour.html",
    "tour.bundle.js",
    "permission.html",
    "permission.bundle.js",
    "rejected-permissions.html",
    "permissionTab.bundle.js",
    "error-modal.html",
    "videoPreview.html",
    "videoPreview.bundle.js",
    "toolScript.bundle.js",
    "assets/*",
    "images/no_thumbnail.svg"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.storyxpress.co/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "js": [
        "inboxsdk.js",
        "gmailScript.bundle.js"
      ]
    },
    {
      "matches": [
        "https://outlook.office365.com/mail/inbox",
        "https://outlook.office.com/mail/inbox"
      ],
      "js": [
        "outlookScript.bundle.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com/analytics.js; object-src 'self'"
}