better netsuite

Improvements for netsuite UI

Что такое better netsuite?

better netsuite - это расширение Chrome, разработанное ilc182, и его основная функция - "Improvements for netsuite UI".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения better netsuite

Скачайте файлы расширений better netsuite в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название better netsuite better netsuite
ID gphcnjdkgodjpbcfdombfmjadagiipne
Официальный URL https://chromewebstore.google.com/detail/better-netsuite/gphcnjdkgodjpbcfdombfmjadagiipne
Описание Improvements for netsuite UI
Размер файла 33.77 KB
Количество установок 58
Текущая Версия 1.7
Последнее Обновление 2023-04-25
Дата публикации 2022-04-21
Рейтинг 5.00/5 Всего 1 оценок
Разработчик ilc182
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}