TeleGo

TeleGo

Dial Right From Your Browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TeleGo",
  "description": "Dial Right From Your Browser",
  "version": "3.0.12",
  "manifest_version": 3,
  "author": "Darius-Staigys",
  "homepage_url": "https://www.telego.com",
  "icons": {
    "16": "assets/icons/telego-icon-33x33.png",
    "48": "assets/icons/telego-icon-100x100.png",
    "128": "assets/icons/telego-icon-267x267.png"
  },
  "action": {
    "default_title": "Dail a phone number right from the browser",
    "default_icon": "assets/icons/telego-icon-33x33.png",
    "default_popup": "src/popup/index.html"
  },
  "permissions": [
    "storage",
    "background",
    "contextMenus",
    "cookies"
  ],
  "options_page": "src/options/index.html",
  "content_scripts": [
    {
      "js": [
        "assets/index.ts-loader-9a1d2f8f.js"
      ],
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "host_permissions": [
    "*://*.telego.com/*",
    "*://*.telegoconfig.com/*",
    "*://*.telegopbx.com/*",
    "*://*.tgpbx.com/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/assets/web/*.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/config-4dea2771.js",
        "assets/phone-number.utils-4a439ac5.js",
        "assets/index.ts-d9e026e4.js"
      ],
      "use_dynamic_url": true
    }
  ]
}