Callee

Callee

Chrome agent extension for Voice powered by Kaleyra

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Callee",
  "description": "Chrome agent extension for Voice powered by Kaleyra",
  "version": "2.3",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "icons/kaleyraLogo.png",
    "default_popup": "config.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "linker.css"
      ],
      "js": [
        "linker.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icons/kaleyraLogo.png",
    "48": "icons/kaleyraLogo.png"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "storage",
    "background"
  ],
  "web_accessible_resources": [
    "icons/cc2.png"
  ]
}