better netsuite

Improvements for netsuite UI

Cos'è better netsuite?

better netsuite è un'estensione di Chrome sviluppata da ilc182, e la sua funzione principale è "Improvements for netsuite UI".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione better netsuite

Scarica i file di estensione better netsuite 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

                        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                    

Informazioni di Base sull'Estensione

Nome better netsuite better netsuite
ID gphcnjdkgodjpbcfdombfmjadagiipne
URL Ufficiale https://chromewebstore.google.com/detail/better-netsuite/gphcnjdkgodjpbcfdombfmjadagiipne
Descrizione Improvements for netsuite UI
Dimensione del File 33.77 KB
Conteggio Installazioni 58
Versione Corrente 1.7
Ultimo Aggiornamento 2023-04-25
Data di Pubblicazione 2022-04-21
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore ilc182
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}