Viostream - Free Screen Recording Tool

Viostream - Free Screen Recording Tool

Create recordings with ease, instantly share them with your audience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Viostream - Free Screen Recording Tool",
  "description": "Create recordings with ease, instantly share them with your audience",
  "version": "0.9.16",
  "manifest_version": 3,
  "icons": {
    "16": "images/icons/logo-16.png",
    "48": "images/icons/logo-48.png",
    "128": "images/icons/logo-128.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ],
      "exclude_globs": [
        "chrome-extension://*",
        "https://id.app.*.viostream.io/*",
        "https://id.app.viostream.com/*"
      ]
    }
  ],
  "action": {
    "default_popup": "views/popup.html",
    "default_icon": {
      "16": "images/icons/logo-16.png",
      "48": "images/icons/logo-48.png",
      "128": "images/icons/logo-128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "views/detector.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "views/capture.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "views/recorder.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "views/auth.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "css/content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "css/recorder.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "/fonts/inter/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://viostream.com/*",
    "<all_urls>"
  ]
}