PointMe

PointMe

Remote pointer for pointme.io - a video enhanced remote assistance service.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PointMe",
  "description": "Remote pointer for pointme.io - a video enhanced remote assistance service.",
  "version": "0.2.10",
  "browser_action": {
    "default_title": "PointMe is a video enhanced remote assistance service. It allows trusted experts (a family member, friend or a professional expert), to simply and intuitively educate users on \"how to\" use any online service or app via their PC or mobile phone."
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "externally_connectable": {
    "matches": [
      "*://*.screenovate.com/*",
      "*://localhost/*",
      "*://*.pointme.io/*",
      "*://pointme.io/*",
      "*://podcentral.com/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.png"
  ],
  "permissions": [
    "http://*/*",
    "https://*/*"
  ]
}