TOTVS Remote Assistance

TOTVS Remote Assistance

TOTVS Remote Assistance

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TOTVS Remote Assistance",
  "author": "eduardo.gomes",
  "version": "0.7",
  "manifest_version": 2,
  "minimum_chrome_version": "37",
  "description": "TOTVS Remote Assistance",
  "homepage_url": "https://www.totvs.com.br",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "*://ast.totvs.com.br/*",
        "*://ast2.totvs.com.br/*",
        "*://localhost/*"
      ]
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "management",
    "desktopCapture",
    "clipboardRead",
    "clipboardWrite",
    "fileSystemProvider"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}