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によって開発されたChromeの拡張機能で、その主な機能は「Extends the NetSuite Field Help and adds relevant information to improve your productivity.」です。
拡張機能のスクリーンショット
NetSuite Advanced Field Help拡張機能のCRXファイルをダウンロード
NetSuite Advanced Field Help拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
* 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 |
Eメール | [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 } |