NetSuite Advanced Field Help
Extends the NetSuite Field Help and adds relevant information to improve your productivity.
NetSuite Advanced Field Help क्या है?
NetSuite Advanced Field Help Marcel Pestana द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extends the NetSuite Field Help and adds relevant information to improve your productivity."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NetSuite Advanced Field Help एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
* 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.
एक्सटेंशन की मूल जानकारी
नाम | NetSuite Advanced Field Help |
ID | ehgcekpdldhgfjpionbkilpnaahjiejj |
आधिकारिक URL | https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj |
विवरण | Extends the NetSuite Field Help and adds relevant information to improve your productivity. |
फ़ाइल का आकार | 46.93 KB |
स्थापना संख्या | 10,000 |
वर्तमान संस्करण | 2.13 |
अंतिम अपडेट | 2022-10-01 |
प्रकाशन तिथि | 2020-03-17 |
रेटिंग | 4.44/5 कुल 27 रेटिंग्स |
डेवलपर | Marcel Pestana |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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 } |