Show Netsuite Field IDs

Show Netsuite Field IDs

Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "fieldsearch.js"
      ],
      "matches": [
        "https://*.netsuite.com/app/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.",
  "icons": {
    "128": "fieldSearchIcon.png"
  },
  "manifest_version": 3,
  "name": "Show Netsuite Field IDs",
  "permissions": [],
  "version": "0.0.3"
}