Float — Documentation, guides & Screenshots

Float — Documentation, guides & Screenshots

Record screen with easy shareable links

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Float — Documentation, guides & Screenshots",
  "description": "Record screen with easy shareable links",
  "version": "1.0.14",
  "icons": {
    "16": "16x16.png",
    "32": "32x32.png",
    "64": "64x64.png",
    "128": "128x128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "16x16.png",
      "32": "32x32.png",
      "64": "64x64.png",
      "128": "128x128.png"
    }
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting",
    "unlimitedStorage"
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "style.css"
      ],
      "all_frames": false
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}