NetSuite Advanced Field Help
Extends the NetSuite Field Help and adds relevant information to improve your productivity.
什麼是NetSuite Advanced Field Help?
NetSuite Advanced Field Help是由Marcel Pestana開發的Chrome擴展程式,該擴展的主要功能是“Extends the NetSuite Field Help and adds relevant information to improve your productivity.”。
擴展截圖
下載NetSuite Advanced Field Help擴展crx文件
下載NetSuite Advanced Field Help擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
* It supports NetSuite v2022.2 now. * This extension extends the NetSuite Field Help popup and includes additional details about the field. It shows the field value and field text. If it's a custom field, it includes a link to the field as well as its type. Context Menu: Right click on a field to see the field id, list name and field value.
擴展基本資訊
名稱 | NetSuite Advanced Field Help |
ID | ehgcekpdldhgfjpionbkilpnaahjiejj |
官方網址 | https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj |
簡介 | Extends the NetSuite Field Help and adds relevant information to improve your productivity. |
檔案大小 | 46.93 KB |
安裝次數 | 10,000 |
目前版本 | 2.13 |
更新時間 | 2022-10-01 |
上架時間 | 2020-03-17 |
評分 | 4.44/5 共 27 次評分 |
開發者 | Marcel Pestana |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NetSuite Advanced Field Help", "version": "2.13", "icons": { "48": "icon48.png", "128": "icon128.png" }, "description": "Extends the NetSuite Field Help and adds relevant information to improve your productivity.", "content_scripts": [ { "matches": [ "https:\/\/*.netsuite.com\/app\/*" ], "all_frames": false, "run_at": "document_end", "css": [ "styles.css" ], "js": [ "jquery-1.11.2.min.js", "nsadvfieldhelp.js" ] } ], "web_accessible_resources": [ "functions.js" ], "permissions": [ "contextMenus" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html" }, "manifest_version": 2 } |