AsterCTI Call/SMS - TechExtension

AsterCTI Call/SMS - TechExtension

Asterisk Auto Dialer with crm interation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AsterCTI Call/SMS - TechExtension",
  "short_name": "Click To Call/SMS",
  "description": "Asterisk Auto Dialer with crm interation.",
  "version": "3.3",
  "action": {
    "default_icon": "icon-phone.png",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "*://*/"
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "notifications",
    "webRequest"
  ],
  "icons": {
    "16": "icon-phone.png",
    "48": "icon-phone.png",
    "128": "icon-phone.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "images/icon-phone.png",
        "js/jquery.js",
        "js/content_page.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.js",
        "js/content_page.js",
        "js/tinybox.js",
        "js/loader.js",
        "js/techextensionconnect.js",
        "js/techextension.js",
        "js/techextensiondialog.js"
      ],
      "css": [
        "css/style.css",
        "css/techextensiondialog.css",
        "css/content_page.css"
      ],
      "html": [
        "options.html"
      ],
      "image": [
        "icon-phone.png"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}