NetSuite Helper for Your Works
This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0.
NetSuite Helper for Your Worksคืออะไร?
NetSuite Helper for Your Works เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Salvatore Alparone และคุณลักษณะหลักของมันคือ "This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NetSuite Helper for Your Works
ดาวน์โหลดไฟล์ส่วนขยาย NetSuite Helper for Your Works ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an unofficial extension to use the NetSuite platform to the better and more easily! Inside, there are the most common operations you can do with NetSuite, faster! You can also add new functionality with the Options Panel. For any request and to add new default actions please contact me to e-mail [email protected]! Thanks!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | NetSuite Helper for Your Works |
ID | cmcbjeplgojjjgmpmagjllbnonaagcoj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/netsuite-helper-for-your/cmcbjeplgojjjgmpmagjllbnonaagcoj |
คำอธิบาย | This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0. |
ขนาดไฟล์ | 144 KB |
จำนวนการติดตั้ง | 3,101 |
เวอร์ชันปัจจุบัน | 3.0.8 |
อัปเดตครั้งล่าสุด | 2024-02-10 |
วันที่เผยแพร่ | 2019-04-24 |
คะแนน | 5.00/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Salvatore Alparone |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NetSuite Helper for Your Works", "short_name": "NHYW", "description": "__MSG_manifest_description__", "version": "3.0.8", "author": "[email protected]", "default_locale": "en", "options_page": "options.html", "action": { "default_icon": "64x64-ns-logo.png", "default_popup": "popup.html" }, "icons": { "16": "16x16-ns-logo.png", "48": "48x48-ns-logo.png", "64": "64x64-ns-logo.png", "128": "128x128-ns-logo.png" }, "background": { "service_worker": "NHFS_background.js", "mode": "module" }, "content_scripts": [ { "matches": [ "*:\/\/*.netsuite.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.netsuite.com\/*" ], "js": [ "content_script_main.js" ], "run_at": "document_idle", "world": "MAIN" } ], "permissions": [ "storage", "contextMenus", "activeTab" ] } |