Textellent Messenger

Textellent Messenger

Easily text a phone number from any web page, CRM system or web application with one click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Textellent Messenger",
  "description": "Easily text a phone number from any web page, CRM system or web application with one click",
  "version": "1.2.3",
  "manifest_version": 3,
  "action": {
    "default_icon": "images/icon19.png",
    "default_popup": "html/popup.html",
    "default_title": "Textellent Messenger"
  },
  "background": {
    "service_worker": "js/eventpage.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://client.textellent.com/*",
        "http://qa.textellent.com/*",
        "https://trello.com/*",
        "*://*.taxwise.com/*"
      ],
      "js": [
        "js/patch.js",
        "js/contentscript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "icons": {
    "16": "images/icon16.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/logoIcon.png",
        "images/logo.png",
        "images/tm-text-icon.png"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}