NetSuite Portlet Refresh

NetSuite Portlet Refresh

An extension that refreshes the portlets on NetSuite dashboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NetSuite Portlet Refresh",
  "description": "An extension that refreshes the portlets on NetSuite dashboard.",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery-3.6.0.min.js",
        "background.js"
      ],
      "matches": [
        "*://*.app.netsuite.com/app/center/card.nl*"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_tab": false
  }
}