Focus4Software PhoneArmy - Edge Extension

Focus4Software PhoneArmy - Edge Extension

This will find phone numbers and convert them to hyperlinks to send sms via the Phone Captain

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Focus4Software PhoneArmy - Edge Extension",
  "short_name": "F4S Edge Extension",
  "author": "Focus4Software",
  "description": "This will find phone numbers and convert them to hyperlinks to send sms via the Phone Captain",
  "version": "1.3.22",
  "permissions": [
    "http://local.focus4software.com:8437/*",
    "https://local.focus4software.com:8439/*",
    "storage",
    "notifications",
    "*://*/*"
  ],
  "icons": {
    "16": "F4SPhoneArmy-Icon-16x16.png",
    "48": "F4SPhoneArmy-Icon-48x48.png",
    "128": "F4SPhoneArmy-Icon-128x128.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "jquery.min.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "popupHelpers.js",
        "jquery.min.js",
        "content.js",
        "webSocketClient.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "128": "F4SPhoneArmy-Icon-Button-Red-128x128.png"
    },
    "default_title": "Focus4Software PhoneArmy - Chrome Extension"
  },
  "web_accessible_resources": [
    "jquery.min.js",
    "popupHelpers.js",
    "webSocketClient.js",
    "F4SPhoneArmy-Icon-Button-Red-128x128.png",
    "F4SPhoneArmy-Icon-16x16.png",
    "F4SPhoneArmy-Icon-48x48.png",
    "F4SPhoneArmy-Icon-128x128.png"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "browser_style": true
  },
  "options_page": "options.html",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}