Agency Elephant Soft Phones

Agency Elephant Soft Phones

Receive inbound calls, sms notifications, send sms/ringless voicemails, and make contact changes!.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Agency Elephant Soft Phones",
  "description": "Receive inbound calls, sms notifications, send sms/ringless voicemails, and make contact changes!.",
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; script-src 'self' https://js.pusher.com/4.2/pusher.min.js https://stats.pusher.com; object-src 'self';"
  },
  "version": "0.0.3.1",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "dashboard.html",
    "default_icon": {
      "16": "images/logos/1.png",
      "48": "images/logos/2.png",
      "128": "images/logos/3.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "all_frames": false,
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "lib/twilio/v1/twilio.min.js",
        "js/twilio.js",
        "js/bundle.js",
        "js/adapter-latest.js",
        "js/recorder.js",
        "js/pusher.min.js",
        "content.js"
      ],
      "css": [
        "css/content.css",
        "css/style.css"
      ]
    }
  ],
  "icons": {
    "16": "images/logos/1.png",
    "48": "images/logos/2.png",
    "128": "images/logos/3.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "lib/twilio/audio/*",
        "css/*",
        "templates/*",
        "dashboard.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}