Bitrix24 - звонок с сайта через Битрикс 24

Bitrix24 - звонок с сайта через Битрикс 24

Совершайте звонки через десктопное приложение Битрикс24 на телефонные номера, найденные на сайте.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bitrix24 - звонок с сайта через Битрикс 24",
  "version": "0.8",
  "description": "Совершайте звонки через десктопное приложение Битрикс24 на телефонные номера, найденные на сайте.",
  "options_page": "html/settings.html",
  "icons": {
    "48": "merge_windows_48.png",
    "128": "merge_windows_128.png"
  },
  "browser_action": {
    "default_icon": "its.png",
    "default_title": "Звонок из Битрикс24",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "css/main.css",
        "css/bootstrap-icons.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs",
    "https://kde.it-solution.ru/",
    "https://it-solution.ru/",
    "storage",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "html/*",
    "fonts/glyphicons-halflings-regular.ttf",
    "fonts/glyphicons-halflings-regular.woff",
    "fonts/glyphicons-halflings-regular.woff2"
  ],
  "manifest_version": 2
}