NetSuite Better Export

Allows user to export Saved Search results in various formats including the latest version of Excel.

Что такое NetSuite Better Export?

NetSuite Better Export - это расширение Chrome, разработанное Eric Lackey, и его основная функция - "Allows user to export Saved Search results in various formats including the latest version of Excel.".

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

screenshot

Скачать файл CRX расширения NetSuite Better Export

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

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

                        NetSuite Better Export allows users to export NetSuite Saved Search results in various formats including the latest versions of Excel. You will no longer encounter file format warnings when opening Saved Search results in Excel.

This extension uses the popular SheetJS Javascript library to convert the results returned from NetSuite into the selected export formats.                    

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

Название NetSuite Better Export NetSuite Better Export
ID dbgmdhljlomlbiapjfikffgdmdmpjgdk
Официальный URL https://chromewebstore.google.com/detail/netsuite-better-export/dbgmdhljlomlbiapjfikffgdmdmpjgdk
Описание Allows user to export Saved Search results in various formats including the latest version of Excel.
Размер файла 356 KB
Количество установок 774
Текущая Версия 0.6
Последнее Обновление 2023-05-06
Дата публикации 2023-03-13
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Eric Lackey
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ericlackey/netsuite-better-export
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NetSuite Better Export",
    "version": "0.6",
    "description": "Allows user to export Saved Search results in various formats including the latest version of Excel.",
    "content_scripts": [
        {
            "css": [
                "css\/ns_better_export.css"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.app.netsuite.com\/app\/accounting\/*",
                "https:\/\/*.app.netsuite.com\/app\/common\/*"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "lib\/xlsx.full.min.js",
                "scripts\/ns_better_export.js",
                "images\/data-export-icon-0.png",
                "images\/Loading_icon.gif"
            ],
            "matches": [
                ""
            ]
        }
    ]
}