Fyyn - Your browser screen recorder

Fyyn - Your browser screen recorder

Record your screen and camera with one click - no special skills or additional software required.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.57.0",
  "manifest_version": 3,
  "icons": {
    "16": "assets/brand-logo.png",
    "32": "assets/brand-logo.png",
    "48": "assets/brand-logo.png",
    "128": "assets/brand-logo.png"
  },
  "action": {
    "default_title": "record any screen",
    "default_icon": "assets/brand-logo.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "onboarding.html",
        "devices.html",
        "faceview.html",
        "camrecorder.html",
        "audio_analyzer.html",
        "/assets/*",
        "/locales/*"
      ]
    }
  ]
}