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 là gì?

NetSuite: HTML Script Notes là một tiện ích mở rộng Chrome được phát triển bởi David Smith, và tính năng chính của nó là "Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng NetSuite: HTML Script Notes

Tải xuống các tệp mở rộng NetSuite: HTML Script Notes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NetSuite: HTML Script Notes NetSuite: HTML Script Notes
ID lipldhgjkmfhamocfcdijcdgjcikcbkk
URL Chính Thức https://chromewebstore.google.com/detail/netsuite-html-script-note/lipldhgjkmfhamocfcdijcdgjcikcbkk
Mô tả Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records.
Kích Thước Tệp 50.05 KB
Số Lần Cài Đặt 6,217
Phiên Bản Hiện Tại 1.70
Cập Nhật Lần Cuối 2018-03-27
Ngày Phát Hành 2018-03-27
Đánh Giá 4.18/5 Tổng số 11 Đánh Giá
Nhà Phát Triển David Smith
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}