NetSuite Advanced Field Help
Extends the NetSuite Field Help and adds relevant information to improve your productivity.
Co je NetSuite Advanced Field Help?
NetSuite Advanced Field Help je rozšíření Chrome vyvinuté Marcel Pestana, a jeho hlavní funkcí je „Extends the NetSuite Field Help and adds relevant information to improve your productivity.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření NetSuite Advanced Field Help
Stáhněte si soubory rozšíření NetSuite Advanced Field Help ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
* 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.
Základní Informace o Rozšíření
Název | NetSuite Advanced Field Help |
ID | ehgcekpdldhgfjpionbkilpnaahjiejj |
Oficiální URL | https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj |
Popis | Extends the NetSuite Field Help and adds relevant information to improve your productivity. |
Velikost souboru | 46.93 KB |
Počet instalací | 10,000 |
Aktuální Verze | 2.13 |
Poslední Aktualizace | 2022-10-01 |
Datum Vydání | 2020-03-17 |
Hodnocení | 4.44/5 Celkem 27 Hodnocení |
Vývojář | Marcel Pestana |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } |