SMS VOIP

SMS VOIP

Call center

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SMS VOIP",
  "description": "Call center",
  "version": "1.05",
  "background": {
    "scripts": [
      "dist/background.js"
    ]
  },
  "icons": {
    "16": "./icon/16.ico",
    "48": "./icon/48.ico",
    "128": "./icon/128.ico"
  },
  "browser_action": {
    "default_icon": "./icon/icon.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "dist/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}