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 } |