NetSuite: Show Field IDs

NetSuite: Show 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",
  "name": "NetSuite: Show Field IDs",
  "version": "1.50",
  "description": "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.",
  "icons": {
    "128": "ns-show-field-ids-icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.netsuite.com/app/*"
      ],
      "all_frames": false,
      "run_at": "document_end",
      "js": [
        "jquery-1.11.2.min.js",
        "nsfieldids.js"
      ]
    }
  ],
  "permissions": [],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 2
}