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" ] } |