NetSuite Advanced Field Help
Extends the NetSuite Field Help and adds relevant information to improve your productivity.
¿Qué es NetSuite Advanced Field Help?
NetSuite Advanced Field Help es una extensión de Chrome desarrollada por Marcel Pestana, y su función principal es "Extends the NetSuite Field Help and adds relevant information to improve your productivity.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión NetSuite Advanced Field Help
Descarga archivos de extensión NetSuite Advanced Field Help en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
* 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.
Información Básica de la Extensión
Nombre | NetSuite Advanced Field Help |
ID | ehgcekpdldhgfjpionbkilpnaahjiejj |
URL Oficial | https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj |
Descripción | Extends the NetSuite Field Help and adds relevant information to improve your productivity. |
Tamaño del Archivo | 46.93 KB |
Cantidad de Instalaciones | 10,000 |
Versión Actual | 2.13 |
Última Actualización | 2022-10-01 |
Fecha de Publicación | 2020-03-17 |
Calificación | 4.44/5 Total de 27 Calificaciones |
Desarrollador | Marcel Pestana |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } |