Work Order Completion

Work Order Completion

Helps to complete the work orders in hfc maximo. If you have access to nbn hfc maximo application this will help. For those who do…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Work Order Completion",
  "version": "1.1",
  "manifest_version": 2,
  "icons": {
    "128": "icon/order.png"
  },
  "permissions": [
    "*://hwm.nbnco.net.au/*",
    "tabs"
  ],
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/waitForKeyElements.js",
        "js/moment.js",
        "js/script.js"
      ],
      "css": [
        "css/popup.css"
      ],
      "matches": [
        "*://hwm.nbnco.net.au/*"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "icon/order.png"
  },
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/bg.js"
    ]
  },
  "web_accessible_resources": [
    "css/popup.css"
  ]
}