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": [
                ""
            ]
        }
    ]
}