Netsuite SuiteScript Explorer

Netsuite SuiteScript Explorer

Chrome extension that allows Netsuite developers to find a SuiteScript file by searching for a specific string within that file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netsuite SuiteScript Explorer",
  "description": "Chrome extension that allows Netsuite developers to find a SuiteScript file by searching for a specific string within that file.",
  "version": "0.1.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icon16.png",
      "32": "assets/icon32.png",
      "128": "assets/icon128.png"
    }
  },
  "permissions": [
    "activeTab",
    "scripting",
    "tabs",
    "declarativeContent"
  ],
  "host_permissions": [
    "https://*.netsuite.com/app/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject-script.js"
      ],
      "matches": [
        "https://*.netsuite.com/*"
      ]
    }
  ]
}