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.”。

扩展截图

screenshot
screenshot

下载NetSuite: HTML Script Notes扩展crx文件

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