NetSuite: HTML Script Notes
Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records.
Was ist NetSuite: HTML Script Notes?
NetSuite: HTML Script Notes ist eine Chrome-Erweiterung, die von David Smith entwickelt wurde, und ihr Hauptmerkmal ist "Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records.".
Erweiterungsscreenshots
NetSuite: HTML Script Notes-Erweiterungs-CRX-Datei herunterladen
Laden Sie NetSuite: HTML Script Notes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | NetSuite: HTML Script Notes |
ID | lipldhgjkmfhamocfcdijcdgjcikcbkk |
Offizielle URL | https://chromewebstore.google.com/detail/netsuite-html-script-note/lipldhgjkmfhamocfcdijcdgjcikcbkk |
Beschreibung | Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records. |
Dateigröße | 50.05 KB |
Installationsanzahl | 6,217 |
Aktuelle Version | 1.70 |
Letztes Update | 2018-03-27 |
Veröffentlichungsdatum | 2018-03-27 |
Bewertung | 4.18/5 Insgesamt 11 Bewertungen |
Entwickler | David Smith |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |