Heymarket - Business Text Messaging

Heymarket - Business Text Messaging

Click to text from any CRM or webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "hm-chrome",
  "name": "Heymarket - Business Text Messaging",
  "version": "1.4.9",
  "description": "Click to text from any CRM or webpage.",
  "manifest_version": 3,
  "icons": {
    "16": "assets/hm_16.png",
    "48": "assets/hm_48.png",
    "128": "assets/hm_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "48": "assets/hm_48.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://localhost:*/*",
        "*://*.heymarket.com/*"
      ],
      "js": [
        "lodash-debounce.js",
        "libphonenumber-max.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}