NetSuite: HTML Script Notes

Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records.

Co je NetSuite: HTML Script Notes?

NetSuite: HTML Script Notes je rozšíření Chrome vyvinuté David Smith, a jeho hlavní funkcí je „Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření NetSuite: HTML Script Notes

Stáhněte si soubory rozšíření NetSuite: HTML Script Notes ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název NetSuite: HTML Script Notes NetSuite: HTML Script Notes
ID lipldhgjkmfhamocfcdijcdgjcikcbkk
Oficiální URL https://chromewebstore.google.com/detail/netsuite-html-script-note/lipldhgjkmfhamocfcdijcdgjcikcbkk
Popis Add HTML elements and styles to your script notes. View Pretty Print JSON objects. Links to records.
Velikost souboru 50.05 KB
Počet instalací 6,217
Aktuální Verze 1.70
Poslední Aktualizace 2018-03-27
Datum Vydání 2018-03-27
Hodnocení 4.18/5 Celkem 11 Hodnocení
Vývojář David Smith
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}