UtterU

UtterU

Call and SMS via Utteru powered by MSG91

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "UtterU",
  "description": "Call and SMS via Utteru powered by MSG91",
  "version": "1.6",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "UtterU",
    "default_icon": "./img/icon2.png"
  },
  "icons": {
    "16": "./img/icon2.png",
    "32": "./img/icon2.png",
    "48": "./img/icon2.png",
    "128": "./img/icon2.png"
  },
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "web_accessible_resources": [
    "pages/verify.html"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}