NetSuite: Show Field IDs

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

What is NetSuite: Show Field IDs?

NetSuite: Show Field IDs is a Chrome extension developed by David Smith, and its main feature is "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.".

Extension Screenshots

screenshot
screenshot
screenshot

Download NetSuite: Show Field IDs Extension CRX File

Download NetSuite: Show Field IDs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Great for developers and anyone else that uses NetSuite and frequently needs to know the field IDs on a record. Hover over the field link to view the ID. Click the link has no change to the NetSuite help popup. 

Shift+Click the link to copy the ID to the clipboard!

Can't find that field? Ctrl+Shift+F and enter your ID! Ctrl+Shift+L to find by Label. We'll find it for you if it's on the page.                    

Extension Basic Information

Name NetSuite: Show Field IDs NetSuite: Show Field IDs
ID pnhdmfiakolonplgblabffnpfhfplmbh
Official URL https://chromewebstore.google.com/detail/netsuite-show-field-ids/pnhdmfiakolonplgblabffnpfhfplmbh
Description Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.
File Size 46.16 KB
Installation Count 11,792
Current Version 1.50
Last Updated 2022-06-30
Publish Date 2017-06-22
Rating 4.85/5 Total 27 Ratings
Developer David Smith
Email [email protected]
Payment Type free
Supported Languages en-US
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
}