Netsuite Bundles to Update

Netsuite Bundles to Update

Detect the error logs in your NetSuite Production Account and be notified on bundle updates.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netsuite Bundles to Update",
  "version": "1.1",
  "manifest_version": 2,
  "description": "",
  "icons": {
    "128": "sunit-test2.png"
  },
  "browser_action": {
    "default_title": "SuiteDB logs & Bundle Info",
    "default_popup": "Popup.html"
  },
  "permissions": [
    "https://*.app.netsuite.com/*",
    "contentSettings"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.app.netsuite.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "pageScript.js"
  ]
}