NetSuite: Show Field IDs

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

Cos'è NetSuite: Show Field IDs?

NetSuite: Show Field IDs è un'estensione di Chrome sviluppata da David Smith, e la sua funzione principale è "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione NetSuite: Show Field IDs

Scarica i file di estensione NetSuite: Show Field IDs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome NetSuite: Show Field IDs NetSuite: Show Field IDs
ID pnhdmfiakolonplgblabffnpfhfplmbh
URL Ufficiale https://chromewebstore.google.com/detail/netsuite-show-field-ids/pnhdmfiakolonplgblabffnpfhfplmbh
Descrizione Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.
Dimensione del File 46.16 KB
Conteggio Installazioni 11,792
Versione Corrente 1.50
Ultimo Aggiornamento 2022-06-30
Data di Pubblicazione 2017-06-22
Valutazione 4.85/5 Totale 27 Valutazioni
Sviluppatore David Smith
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}