TowWorks Support Extension

TowWorks Support Extension

TowWorks support extension allows users to capture screen shots directly from the software without a third party tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TowWorks Support Extension",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": "TowWorks support extension allows users to capture screen shots directly from the software without a third party tool.",
  "browser_action": {
    "default_icon": "icon_48.png"
  },
  "externally_connectable": {
    "matches": [
      "*://*.towworks.com/*",
      "http://localhost/*",
      "*://aclflt.bargeacbl.com/*"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.towworks.com/*",
        "http://localhost/*",
        "*://aclflt.bargeacbl.com/*"
      ],
      "js": [
        "installed.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "api.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "activeTab"
  ],
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  }
}