Entartes NetSuite

Entartes NetSuite

Chrome extension that enhances NetSuite and works along side the Entartes solution library.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Entartes NetSuite",
  "description": "Chrome extension that enhances NetSuite and works along side the Entartes solution library.",
  "version": "0.3",
  "action": {
    "default_popup": "index.html",
    "default_icon": "./img/logo16.png"
  },
  "icons": {
    "16": "./img/logo16.png",
    "32": "./img/logo32.png",
    "48": "./img/logo48.png",
    "128": "./img/logo128.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/ols/content.js"
      ],
      "matches": [
        "https://*.app.netsuite.com/app/common/search/searchresults.nl*"
      ],
      "include_globs": [
        "https://*.app.netsuite.com/app/common/search/searchresults.nl*"
      ]
    },
    {
      "js": [
        "scripts/inquiries/content.js"
      ],
      "matches": [
        "https://*.app.netsuite.com/app/accounting/transactions/manufacturing/costedbillofmaterialsinquiry.nl*",
        "https://*.app.netsuite.com/app/accounting/transactions/inventory/billofmaterialsinquiry.nl*",
        "https://*.app.netsuite.com/app/accounting/transactions/manufacturing/componentwhereusedinquiry.nl*"
      ],
      "include_globs": [
        "https://*.app.netsuite.com/app/accounting/transactions/manufacturing/costedbillofmaterialsinquiry.nl*",
        "https://*.app.netsuite.com/app/accounting/transactions/inventory/billofmaterialsinquiry.nl*",
        "https://*.app.netsuite.com/app/accounting/transactions/manufacturing/componentwhereusedinquiry.nl*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "Libraries/XML2JSON/xmlToJson.js"
      ],
      "matches": [
        "https://*.app.netsuite.com/*",
        "https://*.app.netsuite.com/*"
      ]
    },
    {
      "resources": [
        "scripts/inquiries/netsuite_api.js"
      ],
      "matches": [
        "https://*.app.netsuite.com/*",
        "https://*.app.netsuite.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}