Bulk SMS APP by MSGCLUB.NET

Bulk SMS APP by MSGCLUB.NET

BulkSMSApp from msgclub.net that enables users to send generic and group SMS messages through chrome extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bulk SMS APP by MSGCLUB.NET",
  "description": "BulkSMSApp from msgclub.net that enables users to send generic and group SMS messages through chrome extension.",
  "version": "6.0",
  "browser_action": {
    "default_icon": "img/logo_128.png",
    "default_popup": "pages/index.html"
  },
  "icons": {
    "16": "img/logo_16.png",
    "48": "img/logo_48.png",
    "128": "img/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "sms.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "https://www.google.com/",
    "http://www.google.com/",
    "<all_urls>"
  ],
  "short_name": "MSGCLUB.NET",
  "content_security_policy": "script-src 'self' 'unsafe-eval'  https://www.google.com/; object-src 'self'"
}