NetSuite Better Export

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

Was ist NetSuite Better Export?

NetSuite Better Export ist eine Chrome-Erweiterung, die von Eric Lackey entwickelt wurde, und ihr Hauptmerkmal ist "Allows user to export Saved Search results in various formats including the latest version of Excel.".

Erweiterungsscreenshots

screenshot

NetSuite Better Export-Erweiterungs-CRX-Datei herunterladen

Laden Sie NetSuite Better Export-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name NetSuite Better Export NetSuite Better Export
ID dbgmdhljlomlbiapjfikffgdmdmpjgdk
Offizielle URL https://chromewebstore.google.com/detail/netsuite-better-export/dbgmdhljlomlbiapjfikffgdmdmpjgdk
Beschreibung Allows user to export Saved Search results in various formats including the latest version of Excel.
Dateigröße 356 KB
Installationsanzahl 774
Aktuelle Version 0.6
Letztes Update 2023-05-06
Veröffentlichungsdatum 2023-03-13
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Eric Lackey
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ericlackey/netsuite-better-export
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}