NetSuite Advanced Field Help
Extends the NetSuite Field Help and adds relevant information to improve your productivity.
Vad är NetSuite Advanced Field Help?
NetSuite Advanced Field Help är en Chrome-tillägg utvecklad av Marcel Pestana, och dess huvudfunktion är "Extends the NetSuite Field Help and adds relevant information to improve your productivity.".
Tilläggsskärmbilder
Ladda ner NetSuite Advanced Field Help-förlängningens CRX-fil
Ladda ner NetSuite Advanced Field Help-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
* 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. Grundläggande Information om Tillägg
| Namn | |
| ID | ehgcekpdldhgfjpionbkilpnaahjiejj |
| Officiell webbadress | https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj |
| Beskrivning | Extends the NetSuite Field Help and adds relevant information to improve your productivity. |
| Filstorlek | 46.93 KB |
| Antal Installationer | 10,000 |
| Aktuell Version | 2.13 |
| Senast Uppdaterad | 2022-10-01 |
| Publiceringsdatum | 2020-03-17 |
| Betyg | 4.44/5 Totalt 27 Betyg |
| Utvecklare | Marcel Pestana |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
} | |