Vodafone Chrome Extension

Vodafone Chrome Extension

Voice calls with One Net Collaboration

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.5",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/vodafone-logo-16.png",
    "128": "images/vodafone-logo-128.png"
  },
  "default_locale": "en",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' ",
  "background": {
    "scripts": [
      "scripts/background/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/vodafone-logo-grey-19.png",
      "38": "images/vodafone-logo-grey-38.png"
    },
    "default_title": "Vodafone client",
    "default_popup": "views/popup/popup.html"
  },
  "options_page": "views/options/options.html",
  "omnibox": {
    "keyword": "vdf"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "scripts/google-mail/loader.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "scripts/google-mail/jquery.js",
    "scripts/google-mail/gmail.js",
    "scripts/google-mail/controller.js"
  ],
  "permissions": [
    "tabs",
    "notifications",
    "*://mail.google.com/*",
    "*://www.google.com/*",
    "*://gadget-onenet.vodafone.com/*"
  ]
}