COLLABORATE: Co-browse Without Screen Sharing

COLLABORATE: Co-browse Without Screen Sharing

Sariska co-browsing extension to browse any website together without screen sharing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "COLLABORATE: Co-browse Without Screen Sharing",
  "version": "1.0.6",
  "description": "Sariska co-browsing extension to browse any website together without screen sharing",
  "permissions": [
    "storage",
    "tabs",
    "activeTab"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "24": "icon24.png",
      "32": "icon32.png"
    }
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "homepage_url": "https://www.sariska.io",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "manifest_version": 3
}