OmgleWatch

OmgleWatch

Tool for Sharing Your screen on Omegle and also keep track of your time spent on it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "OmgleWatch",
  "version": "1.0.0",
  "description": "Tool for Sharing Your screen on Omegle and also keep track of your time spent on it.",
  "host_permissions": [
    "https://www.omegle.com/",
    "http://www.omegle.com/"
  ],
  "author": "Surjeet",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.omegle.com/",
        "http://www.omegle.com/"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/Camera.png",
        "assets/TV.png",
        "style.css",
        "script.js",
        "assets/Mic.png",
        "assets/Mute.png"
      ],
      "matches": [
        "https://www.omegle.com/*",
        "http://www.omegle.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/ext-icon.png",
      "24": "assets/ext-icon.png",
      "32": "assets/ext-icon.png"
    },
    "default_title": "OmgleWatch",
    "default_popup": "popup.html",
    "width": 800,
    "height": 800
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}