NetSuite Advanced Field Help

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

O que é NetSuite Advanced Field Help?

NetSuite Advanced Field Help é uma extensão do Chrome desenvolvida por Marcel Pestana, e sua principal característica é "Extends the NetSuite Field Help and adds relevant information to improve your productivity.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão NetSuite Advanced Field Help

Baixe arquivos de extensão NetSuite Advanced Field Help no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        * 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.                    

Informações Básicas da Extensão

Nome NetSuite Advanced Field Help NetSuite Advanced Field Help
ID ehgcekpdldhgfjpionbkilpnaahjiejj
URL Oficial https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj
Descrição Extends the NetSuite Field Help and adds relevant information to improve your productivity.
Tamanho do Arquivo 46.93 KB
Contagem de Instalações 10,000
Versão Atual 2.13
Última Atualização 2022-10-01
Data de Publicação 2020-03-17
Classificação 4.44/5 Total de 27 Avaliações
Desenvolvedor Marcel Pestana
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}