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은(는) David Smith에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records."입니다.
확장 프로그램 스크린샷
NetSuite: HTML Script Notes 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |