Intulse Companion App

Intulse Companion App

Click on phone numbers to call/text directly from any web site like your helpdesk, CRM, or sales software.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Intulse Companion App",
  "short_name": "Intulse",
  "options_page": "options.html",
  "description": "Click on phone numbers to call/text directly from any web site like your helpdesk, CRM, or sales software.",
  "version": "2023.02.16.01",
  "permissions": [
    "tabs",
    "webNavigation",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/appicon_16x16.png",
      "48": "images/appicon_48x48.png",
      "128": "images/appicon_128x128.png"
    },
    "default_title": "Intulse",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/appicon_16x16.png",
    "48": "images/appicon_48x48.png",
    "128": "images/appicon_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "manifest_version": 2
}