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是由David Smith開發的Chrome擴展程式,該擴展的主要功能是“Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.”。
擴展截圖
下載NetSuite: Show Field IDs擴展crx文件
下載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 |
官方網址 | 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 } |