Screen & Webcam recorder - Flonnect

Screen & Webcam recorder - Flonnect

Allows Screen Recording from your Webcam and Desktop

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "7.3.11",
  "default_locale": "en",
  "short_name": "Screen Recorder",
  "name": "__MSG_appTitle__",
  "description": "__MSG_appDesc__",
  "action": {
    "default_title": "__MSG_defaultTitle__",
    "chrome_url_overrides": {
      "newtab": "popup.html"
    }
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "InterFontFamily.css",
        "content.css"
      ]
    },
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "Github/github.js"
      ],
      "css": [
        "InterFontFamily.css",
        "Github/github.css"
      ]
    }
  ],
  "icons": {
    "16": "img/ICON.png",
    "48": "img/ICON.png",
    "128": "img/ICON.png"
  },
  "permissions": [
    "tabs",
    "contentSettings",
    "storage",
    "downloads",
    "scripting"
  ],
  "optional_permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "Images/*",
        "options.html",
        "videoPreview.html",
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ]
}