NetSuite Helper for Your Works

NetSuite Helper for Your Works

This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NetSuite Helper for Your Works",
  "short_name": "NHYW",
  "description": "__MSG_manifest_description__",
  "version": "3.0.9",
  "author": "[email protected]",
  "default_locale": "en",
  "options_page": "options.html",
  "action": {
    "default_icon": "64x64-ns-logo.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "16x16-ns-logo.png",
    "48": "48x48-ns-logo.png",
    "64": "64x64-ns-logo.png",
    "128": "128x128-ns-logo.png"
  },
  "background": {
    "service_worker": "NHFS_background.js",
    "mode": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.netsuite.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.netsuite.com/*"
      ],
      "js": [
        "content_script_main.js"
      ],
      "run_at": "document_idle",
      "world": "MAIN"
    }
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab"
  ]
}