NetSuite Field Finder

NetSuite Field Finder

Allows user to quickly find fields in Saved Search and Workflows. Also provides additional details about fields in dropdown.

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 Field Finder",
  "version": "0.28",
  "description": "Allows user to quickly find fields in Saved Search and Workflows. Also provides additional details about fields in dropdown.",
  "content_scripts": [
    {
      "css": [
        "css/fieldfinder.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.app.netsuite.com/app/common/search/*",
        "https://*.app.netsuite.com/app/common/workflow/setup/*",
        "https://*.app.netsuite.com/app/common/custom/bodycustfield.nl*"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fieldfinder.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_title": "NetSuite Field Finder",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "icon128.png"
  }
}