GMEET

GMEET

Chrome extension for GMEET

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GMEET",
  "description": "Chrome extension for GMEET",
  "permissions": [
    "nativeMessaging",
    "tabs",
    "activeTab",
    "background",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "version": "0.0.0.7",
  "minimum_chrome_version": "29",
  "manifest_version": 2,
  "externally_connectable": {
    "matches": [
      "*://room.hdvideomeet.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://room.hdvideomeet.com/*"
      ],
      "js": [
        "myscript.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "short_name": "GMEET",
  "author": "Globalone Technologies Pvt Ltd"
}