NetSuite: Show Field IDs

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

Was ist NetSuite: Show Field IDs?

NetSuite: Show Field IDs ist eine Chrome-Erweiterung, die von David Smith entwickelt wurde, und ihr Hauptmerkmal ist "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

NetSuite: Show Field IDs-Erweiterungs-CRX-Datei herunterladen

Laden Sie NetSuite: Show Field IDs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name NetSuite: Show Field IDs NetSuite: Show Field IDs
ID pnhdmfiakolonplgblabffnpfhfplmbh
Offizielle URL https://chromewebstore.google.com/detail/netsuite-show-field-ids/pnhdmfiakolonplgblabffnpfhfplmbh
Beschreibung Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.
Dateigröße 46.16 KB
Installationsanzahl 11,792
Aktuelle Version 1.50
Letztes Update 2022-06-30
Veröffentlichungsdatum 2017-06-22
Bewertung 4.85/5 Insgesamt 27 Bewertungen
Entwickler David Smith
E-Mail davidcrsmith@gmail.com
Zahlungsart free
Unterstützte Sprachen 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
}