Salesmsg - Business Text Messaging

Salesmsg - Business Text Messaging

Salesmsg makes it easy to send, receive, and manage SMS text and MMS picture message conversations using real local phone numbers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "short_name": "Salesmsg",
  "name": "Salesmsg - Business Text Messaging",
  "author": "Salesmsg",
  "version": "1.36.2",
  "description": "Salesmsg makes it easy to send, receive, and manage SMS text and MMS picture message conversations using real local phone numbers.",
  "browser_action": {
    "default_icon": "img/[email protected]",
    "default_title": "Salesmsg"
  },
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk=' http://localhost:3000; object-src 'self'",
  "icons": {
    "16": "img/logo.png",
    "48": "img/[email protected]",
    "128": "img/[email protected]"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "oauth2": {
    "auth_url": "https://app.salesmessage.com/auth/oauth",
    "redirect_url": "https://app.salesmessage.com/redirect",
    "number_url": "https://app.salesmessage.com/api/v4/extension?phone=",
    "client_id": "10",
    "scopes": [
      "user",
      "contact",
      "message",
      "private-api"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.salesmessage.com/redirect"
      ],
      "js": [
        "auth.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [
        "*://app.salesmessage.com/*",
        "*://qa.salesmessage.com/*",
        "*://stage.salesmessage.com/*",
        "*://develop.salesmessage.com/*",
        "*://release.salesmessage.com/*",
        "*://dev.salesmessage.com/*",
        "*://*.salesmessage.loc/*"
      ],
      "js": [
        "highlight.js"
      ],
      "css": [
        "highlight.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "notifications",
    "webNavigation",
    "system.display",
    "https://*.salesmessage.com/*"
  ]
}