Nimvelo for Chrome™

Nimvelo for Chrome™

Allows you to make calls on your extension, send SMS messages, access your company phone book and view recent calls.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nimvelo for Chrome™",
  "short_name": "Nimvelo",
  "version": "1.4.1",
  "manifest_version": 2,
  "description": "Allows you to make calls on your extension, send SMS messages, access your company phone book and view recent calls.",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icon16.png",
    "default_popup": "main.html",
    "js": [
      "js/main.js",
      "content.js",
      "background.js",
      "jquery/jquery.min.js",
      "jquery/jquery-ui-1.10.0.custom.min.js",
      "bootstrap/js/bootstrap.min.js",
      "jquery/moment.js",
      "jquery/jquery.atmosphere.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "*://*/*",
    "notifications",
    "storage"
  ],
  "web_accessible_resources": [
    "images/icon48.png",
    "call.html",
    "jquery/jquery.min.js"
  ],
  "background": {
    "scripts": [
      "jquery/jquery.min.js",
      "jquery/jquery.atmosphere.js",
      "js/request.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery/jquery.min.js",
        "jquery/jquery.ba-replacetext.min.js",
        "jquery/jquery.initialize.min.js",
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}