better netsuite

Improvements for netsuite UI

O que é better netsuite?

better netsuite é uma extensão do Chrome desenvolvida por ilc182, e sua principal característica é "Improvements for netsuite UI".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão better netsuite

Baixe arquivos de extensão better netsuite 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

                        Provides fixes for the useless UI of netsuite.

Added features:
- enlarged input box for timelog description
- summary table for logged hours per project

v1.2:
- editable Hourly fee field
- billable amount is calculated per project and total
- minor code refactor

v1.3
- szamlazz.hu "integration", to auto-create an invoice draft, based on summary table

v1.4
- updated CSS to match netsuite's updated HTML

v1.5
- hourly fee can be set per project

v1.6
- invoice generation logic changed to show actual hours

v1.7
- updated CSS to match netsuite's updated HTML                    

Informações Básicas da Extensão

Nome better netsuite better netsuite
ID gphcnjdkgodjpbcfdombfmjadagiipne
URL Oficial https://chromewebstore.google.com/detail/better-netsuite/gphcnjdkgodjpbcfdombfmjadagiipne
Descrição Improvements for netsuite UI
Tamanho do Arquivo 33.77 KB
Contagem de Instalações 58
Versão Atual 1.7
Última Atualização 2023-04-25
Data de Publicação 2022-04-21
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor ilc182
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "better netsuite",
    "description": "Improvements for netsuite UI",
    "version": "1.7",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/*.app.netsuite.com\/*"
            ]
        },
        {
            "js": [
                "szamlazz.js"
            ],
            "matches": [
                "https:\/\/www.szamlazz.hu\/szamla\/?page=szamlaszerkeszto"
            ]
        }
    ]
}