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
官方網址 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"
    ]
}