NetSuite Advanced Field Help

Extends the NetSuite Field Help and adds relevant information to improve your productivity.

Cos'è NetSuite Advanced Field Help?

NetSuite Advanced Field Help è un'estensione di Chrome sviluppata da Marcel Pestana, e la sua funzione principale è "Extends the NetSuite Field Help and adds relevant information to improve your productivity.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione NetSuite Advanced Field Help

Scarica i file di estensione NetSuite Advanced Field Help in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        * It supports NetSuite v2022.2 now. *

This extension extends the NetSuite Field Help popup and includes additional details about the field. It shows the field value and field text. If it's a custom field, it includes a link to the field as well as its type.

Context Menu: Right click on a field to see the field id, list name and field value.                    

Informazioni di Base sull'Estensione

Nome NetSuite Advanced Field Help NetSuite Advanced Field Help
ID ehgcekpdldhgfjpionbkilpnaahjiejj
URL Ufficiale https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj
Descrizione Extends the NetSuite Field Help and adds relevant information to improve your productivity.
Dimensione del File 46.93 KB
Conteggio Installazioni 10,000
Versione Corrente 2.13
Ultimo Aggiornamento 2022-10-01
Data di Pubblicazione 2020-03-17
Valutazione 4.44/5 Totale 27 Valutazioni
Sviluppatore Marcel Pestana
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NetSuite Advanced Field Help",
    "version": "2.13",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Extends the NetSuite Field Help and adds relevant information to improve your productivity.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netsuite.com\/app\/*"
            ],
            "all_frames": false,
            "run_at": "document_end",
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-1.11.2.min.js",
                "nsadvfieldhelp.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "functions.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}