NetSuite: Show Field IDs
Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.
Qu'est-ce que NetSuite: Show Field IDs ?
NetSuite: Show Field IDs est une extension Chrome développée par David Smith, et sa fonction principale est "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension NetSuite: Show Field IDs
Téléchargez les fichiers d'extension NetSuite: Show Field IDs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | NetSuite: Show Field IDs |
ID | pnhdmfiakolonplgblabffnpfhfplmbh |
URL Officiel | 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. |
Taille du Fichier | 46.16 KB |
Nombre d'Installations | 11,792 |
Version Actuelle | 1.50 |
Dernière Mise à Jour | 2022-06-30 |
Date de Publication | 2017-06-22 |
Évaluation | 4.85/5 Total 27 Évaluations |
Développeur | David Smith |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |