NetSuite Advanced Field Help
Extends the NetSuite Field Help and adds relevant information to improve your productivity.
Co to jest NetSuite Advanced Field Help?
NetSuite Advanced Field Help to rozszerzenie Chrome opracowane przez Marcel Pestana, a jego główną funkcją jest „Extends the NetSuite Field Help and adds relevant information to improve your productivity.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia NetSuite Advanced Field Help
Pobierz pliki rozszerzeń NetSuite Advanced Field Help w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
* 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.
Podstawowe informacje o rozszerzeniu
Nazwa | NetSuite Advanced Field Help |
ID | ehgcekpdldhgfjpionbkilpnaahjiejj |
Oficjalny URL | https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj |
Opis | Extends the NetSuite Field Help and adds relevant information to improve your productivity. |
Rozmiar pliku | 46.93 KB |
Liczba instalacji | 10,000 |
Aktualna Wersja | 2.13 |
Ostatnia Aktualizacja | 2022-10-01 |
Data Publikacji | 2020-03-17 |
Ocena | 4.44/5 Łącznie 27 Oceny |
Deweloper | Marcel Pestana |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } |