Frejun Chrome Dialler Plugin

Frejun Chrome Dialler Plugin

This plugin can be used to place calls from web pages using Frejun

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Frejun Chrome Dialler Plugin",
  "version": "4.2.9",
  "description": "This plugin can be used to place calls from web pages using Frejun",
  "permissions": [
    "background",
    "storage",
    "notifications",
    "idle"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://*.frejun.com/*",
        "https://*.whatsapp.com/*",
        "https://*.zoom.us/*",
        "https://mail.google.com/*",
        "https://*.indiamart.com/*",
        "https://*.freshteam.com/*"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    },
    {
      "js": [
        "dynamicContent.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "https://*.freshteam.com/*",
        "https://*.indiamart.com/*"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "popup.html"
  ],
  "icons": {
    "192": "logo192.png"
  },
  "browser_action": {
    "default_icon": {
      "192": "logo192.png"
    },
    "default_title": "Popup",
    "default_popup": "options.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_security_policy": "script-src 'self' https://www.gstatic.com/firebasejs/8.6.3/firebase-app.js https://www.gstatic.com/firebasejs/8.6.3/firebase-messaging.js https://eu1.clevertap-prod.com/; object-src 'self'"
}