NetSuite: Show Field IDs
Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.
Τι είναι το NetSuite: Show Field IDs;
Το NetSuite: Show Field IDs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον David Smith, και η κύρια λειτουργία του είναι "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης NetSuite: Show Field IDs
Λήψη αρχείων επέκτασης NetSuite: Show Field IDs σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | NetSuite: Show Field IDs |
ID | pnhdmfiakolonplgblabffnpfhfplmbh |
Επίσημο URL | https://chromewebstore.google.com/detail/netsuite-show-field-ids/pnhdmfiakolonplgblabffnpfhfplmbh |
Περιγραφή | Hover over NetSuite fields to show their IDs. Find fields by their ID or Label. |
Μέγεθος Αρχείου | 46.16 KB |
Αριθμός Εγκαταστάσεων | 11,792 |
Τρέχουσα Έκδοση | 1.50 |
Τελευταία Ενημέρωση | 2022-06-30 |
Ημερομηνία Δημοσίευσης | 2017-06-22 |
Αξιολόγηση | 4.85/5 Συνολικά 27 Αξιολογήσεις |
Προγραμματιστής | David Smith |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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 } |