Llamada Web

Llamada Web

Extensión para Google Chrome de Duocom para hacer llamadas web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "/img/icon.png",
    "default_popup": "popup.html",
    "default_title": "Llamada Web"
  },
  "commands": {
    "make_call": {
      "description": "Realice una llamada desde un número seleccionado en una página web",
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "MacCtrl+Shift+L"
      }
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "thirdParty/jquery.min.js",
        "js/selection.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Extensión para Google Chrome de Duocom para hacer llamadas web",
  "icons": {
    "16": "/img/icon16.png",
    "48": "/img/icon48.png",
    "128": "/img/icon128.png"
  },
  "manifest_version": 2,
  "name": "Llamada Web",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "<all_urls>",
    "notifications"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.4.2"
}