Click to Call/Texting Extension by Mango9

Click to Call/Texting Extension by Mango9

Mango9's Click to Call/SMS Chrome extension allows quick calls and texts from your browser, boosting efficiency in logistics.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Click to Call/Texting Extension by Mango9",
  "description": "Mango9's Click to Call/SMS Chrome extension allows quick calls and texts from your browser, boosting efficiency in logistics.",
  "version": "2.0.2",
  "action": {
    "default_icon": "mango9_32-disabled.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.bundle.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage",
    "gcm",
    "notifications",
    "contextMenus"
  ],
  "icons": {
    "16": "mango9_16.png",
    "48": "mango9_48.png",
    "128": "mango9_128.png"
  },
  "options_page": "options.html",
  "externally_connectable": {
    "matches": [
      "https://*.mango9.com/*"
    ]
  },
  "host_permissions": [
    "https://*.mango9.com/*",
    "http://*.mango9.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "call-phone-v.png",
        "call-only-phone-v.png",
        "call-only-sms-v.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}