ServiceM8 Phone

ServiceM8 Phone

ServiceM8 Phone

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ServiceM8 Phone",
  "version": "1.0.8",
  "description": "ServiceM8 Phone",
  "manifest_version": 2,
  "permissions": [
    "background",
    "notifications",
    "alarms",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "ServiceM8 Phone",
    "default_popup": "interface.html",
    "default_icon": {
      "32": "images/icon_offline_32.png",
      "64": "images/icon_offline_64.png",
      "128": "images/icon_offline_128.png",
      "256": "images/icon_offline_256.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://go.servicem8.com/*",
        "https://*.go.servicem8.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "32": "images/icon_phone_system_32.png",
    "64": "images/icon_phone_system_64.png",
    "128": "images/icon_phone_system_128.png",
    "256": "images/icon_phone_system_256.png"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "interface.html"
  ]
}