FortiVoice Click-to-dial

FortiVoice Click-to-dial

Initiate calls with FortiVoice from Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FortiVoice Click-to-dial",
  "version": "1.0.10",
  "description": "Initiate calls with FortiVoice from Chrome.",
  "manifest_version": 3,
  "icons": {
    "128": "images/fv_corner_icon_128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "options_ui": {
    "page": "views/options.html"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/phone_blue.png",
        "styles/contentStyle.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ]
    }
  ],
  "action": {
    "default_icon": "images/fv_corner_icon_128.png",
    "default_popup": "views/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*.htm",
        "file:///*.html"
      ],
      "css": [
        "styles/contentStyle.css"
      ],
      "js": [
        "scripts/libphonenumber-max.min.js",
        "scripts/util.js",
        "scripts/requestUtil.js",
        "scripts/content.js"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self",
    "worker-src": "self"
  }
}