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
Eメール [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"
    ]
}