Partage: Capture, record & share your screen

Partage: Capture, record & share your screen

Partage is a simple Chrome Extension to record your screen, instantly upload the recordings to the cloud and share those via a…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApjQihRiHqy1xeZpX3Z8KGhJawbIUqZz5QJsBb20d/8iIHCaXmIyL0suH1Ga1jWgGVmNP9K1YzmGZcIcUX12oIRAgLBL8I6+CUm5NfmInCx95xVg3Gak/pJqUG46BMVzcRxxin3Lh/ghoN0tODbdKFAc4TE5D2AJ+I3BVyUdqqKxVzbr3f+dwArJgUBAbuFGrvJ2udMNagGACZ4b41aPjFCsSiAFUhjRLkIL4YruZLkDTloXRvUJ2WWCwA4LK+Y2boxw5l+bnJPzHP0FSOQa2Qkj0koJc5e/89hULivKkhmjp7KJvxxfAlhPsNJxTGNqj7rTkUSc1RNxGIrpitwOxoQIDAQAB",
  "name": "Partage: Capture, record & share your screen",
  "short_name": "Partage",
  "version": "0.0.7",
  "manifest_version": 3,
  "icons": {
    "16": "icons/logo-16.png",
    "48": "icons/logo-48.png",
    "64": "icons/logo-64.png",
    "128": "icons/logo-128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "desktopCapture",
    "storage"
  ],
  "host_permissions": [
    "https://partage.video/"
  ],
  "action": {
    "default_title": "Click to start recording"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "https://partage.video/*"
    ]
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://partage.video/*"
      ],
      "resources": [
        "index.html"
      ],
      "use_dynamic_url": false
    }
  ]
}