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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Marcel Pestana และคุณลักษณะหลักของมันคือ "Extends the NetSuite Field Help and adds relevant information to improve your productivity."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NetSuite Advanced Field Help
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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 } |