MyOperator Click to Call

MyOperator Click to Call

Use MyOperator's Click2Call feature to work more efficiently - directly call numbers displayed in your Chrome browser without…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.6",
  "version_name": "2.0.6",
  "manifest_version": 3,
  "name": "MyOperator Click to Call",
  "author": "Akshat Jain",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.myoperator.com/*",
        "https://in.app.myoperator.com/*",
        "https://us.app.myoperator.com/*"
      ],
      "js": [
        "contentScriptSession.bundle.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content.styles.css"
      ],
      "js": [
        "jquery.js",
        "contentScriptFunctions.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": []
    }
  ],
  "permissions": [
    "storage",
    "notifications",
    "tabs"
  ]
}