Media.io - Free Video and Screen Recorder

Media.io - Free Video and Screen Recorder

An all-round video recorder & editor. Save, edit, and share your video instantly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Media.io - Free Video and Screen Recorder",
  "manifest_version": 3,
  "description": "An all-round video recorder & editor. Save, edit, and share your video instantly.",
  "version": "1.0.1",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup/popup.html",
    "default_title": "Media.io - Free Video and Screen Recorder"
  },
  "icons": {
    "16": "assets/logo/mi_16.png",
    "24": "assets/logo/mi_24.png",
    "32": "assets/logo/mi_32.png",
    "48": "assets/logo/mi_48.png",
    "128": "assets/logo/mi_128.png"
  },
  "homepage_url": "https://www.media.io/index.html",
  "permissions": [
    "storage",
    "activeTab",
    "tabs",
    "alarms",
    "scripting",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_page": "preview/preview.html"
}