NetSuite Advanced Field Help
Extends the NetSuite Field Help and adds relevant information to improve your productivity.
NetSuite Advanced Field Help là gì?
NetSuite Advanced Field Help là một tiện ích mở rộng Chrome được phát triển bởi Marcel Pestana, và tính năng chính của nó là "Extends the NetSuite Field Help and adds relevant information to improve your productivity.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NetSuite Advanced Field Help
Tải xuống các tệp mở rộng NetSuite Advanced Field Help dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
* 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NetSuite Advanced Field Help |
ID | ehgcekpdldhgfjpionbkilpnaahjiejj |
URL Chính Thức | https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj |
Mô tả | Extends the NetSuite Field Help and adds relevant information to improve your productivity. |
Kích Thước Tệp | 46.93 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 2.13 |
Cập Nhật Lần Cuối | 2022-10-01 |
Ngày Phát Hành | 2020-03-17 |
Đánh Giá | 4.44/5 Tổng số 27 Đánh Giá |
Nhà Phát Triển | Marcel Pestana |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |