NetSuite Advanced Field Help
Extends the NetSuite Field Help and adds relevant information to improve your productivity.
Wat is NetSuite Advanced Field Help?
NetSuite Advanced Field Help is een Chrome-extensie ontwikkeld door Marcel Pestana, en de belangrijkste functie is "Extends the NetSuite Field Help and adds relevant information to improve your productivity.".
Extensie Screenshots
Download het CRX-bestand van de extensie NetSuite Advanced Field Help
Download NetSuite Advanced Field Help-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
* 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.
Basisinformatie over de Extensie
Naam | NetSuite Advanced Field Help |
ID | ehgcekpdldhgfjpionbkilpnaahjiejj |
Officiële URL | https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj |
Beschrijving | Extends the NetSuite Field Help and adds relevant information to improve your productivity. |
Bestandsgrootte | 46.93 KB |
Aantal Installaties | 10,000 |
Huidige Versie | 2.13 |
Laatst Bijgewerkt | 2022-10-01 |
Publicatiedatum | 2020-03-17 |
Beoordeling | 4.44/5 Totaal 27 Beoordelingen |
Ontwikkelaar | Marcel Pestana |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } |