Screen Recorder

Screen Recorder

Screen recording for active tab and app that download screen video in mp4

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.0",
  "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.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "img/ICON.png",
    "48": "img/ICON.png",
    "128": "img/ICON.png"
  },
  "permissions": [
    "tabs",
    "contentSettings",
    "storage",
    "downloads"
  ],
  "host_permissions": [
    "*://*/*"
  ]
}