RecURL

RecURL

Create short and easy-to-share clips of the screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.2.0",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting",
    "desktopCapture"
  ],
  "host_permissions": [
    "https://*.doxanh.dev/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "www/index.html#/popup",
    "default_title": "RecURL"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.doxanh.dev/*"
    ]
  },
  "name": "RecURL",
  "short_name": "RecURL",
  "description": "Create short and easy-to-share clips of the screen.",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}