NetSuite: HTML Script Notes
Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records.
NetSuite: HTML Script Notesคืออะไร?
NetSuite: HTML Script Notes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Smith และคุณลักษณะหลักของมันคือ "Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NetSuite: HTML Script Notes
ดาวน์โหลดไฟล์ส่วนขยาย NetSuite: HTML Script Notes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Automatically pretty prints JSON objects. Automatically hyperlink records when in the format "invoice:5467" and when JSON recordType and id are present in a fully formed JSON object. Add HTML tags to your script logs for easy reading. Detects key/value pairs and will color code similar to the JSON objects.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | NetSuite: HTML Script Notes |
ID | lipldhgjkmfhamocfcdijcdgjcikcbkk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/netsuite-html-script-note/lipldhgjkmfhamocfcdijcdgjcikcbkk |
คำอธิบาย | Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records. |
ขนาดไฟล์ | 50.05 KB |
จำนวนการติดตั้ง | 6,217 |
เวอร์ชันปัจจุบัน | 1.70 |
อัปเดตครั้งล่าสุด | 2018-03-27 |
วันที่เผยแพร่ | 2018-03-27 |
คะแนน | 4.18/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | David Smith |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": false, "js": [ "script_supported_records.js", "jquery-1.11.2.min.js", "htmlscriptnotes.js" ], "matches": [ "https:\/\/*.netsuite.com\/app\/common\/scripting\/script*", "https:\/\/*.netsuite.com\/app\/common\/search\/searchresults*", "https:\/\/*.netsuite.com\/app\/common\/scripting\/webapp.nl*", "https:\/\/*.netsuite.com\/app\/common\/scripting\/plugin.nl*" ], "run_at": "document_end" } ], "description": "Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records.", "icons": { "128": "ns-html-script-notes.png" }, "manifest_version": 2, "name": "NetSuite: HTML Script Notes", "permissions": [ "activeTab", "storage", "https:\/\/*.netsuite.com\/*" ], "version": "1.70", "web_accessible_resources": [ "NLUtil.jsp", "NLUtil.js", "NLAPI.jsp" ] } |