NetSuite :: Saved Search Export to SS 2.x

Export a NetSuite Saved Search to SuiteScript 2.x, formatted as TypeScript, a typed superset of JavaScript.

NetSuite :: Saved Search Export to SS 2.xคืออะไร?

NetSuite :: Saved Search Export to SS 2.x เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nathan Fiedler และคุณลักษณะหลักของมันคือ "Export a NetSuite Saved Search to SuiteScript 2.x, formatted as TypeScript, a typed superset of JavaScript."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย NetSuite :: Saved Search Export to SS 2.x

ดาวน์โหลดไฟล์ส่วนขยาย NetSuite :: Saved Search Export to SS 2.x ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Create and save or load a previously created Saved Search in NetSuite. On the Edit Saved Search page, click the "Export to SuiteScript 2.x" link, added to the top of the page, to display a modal window with the Saved Search exported to SuiteScript 2.x, formatted as TypeScript. Click the "Copy to Clipboard" button to copy the code in its entirety to the Clipboard for further use.

Note that some Saved Searches may not be exportable. If a Saved Search cannot be exported, the "Export to SuiteScript 2.x" link will not be visible.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NetSuite :: Saved Search Export to SS 2.x NetSuite :: Saved Search Export to SS 2.x
ID cbpefhoehnbljgflflncaejfmkmofoje
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netsuite-saved-search-exp/cbpefhoehnbljgflflncaejfmkmofoje
คำอธิบาย Export a NetSuite Saved Search to SuiteScript 2.x, formatted as TypeScript, a typed superset of JavaScript.
ขนาดไฟล์ 332 KB
จำนวนการติดตั้ง 2,718
เวอร์ชันปัจจุบัน 0.3.2
อัปเดตครั้งล่าสุด 2023-11-07
วันที่เผยแพร่ 2020-08-02
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Nathan Fiedler
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_title": "NetSuite :: Saved Search Export to SuiteScript 2.x",
        "default_popup": "popup.html"
    },
    "author": "Nathan Fiedler",
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "lib\/prism.min.css",
                "lib\/jbox.all.min.css",
                "content-script.css"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/clipboard.min.js",
                "lib\/prism.min.js",
                "lib\/jbox.all.min.js",
                "lib\/libphonenumber.min.js",
                "lib\/ss_nsrequire.min.js",
                "lib\/ss_bootstrap.min.js",
                "lib\/n.min.js",
                "mappings.js",
                "content-script.js"
            ],
            "matches": [
                "https:\/\/*.netsuite.com\/app\/common\/search\/search.nl*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Export a NetSuite Saved Search to SuiteScript 2.x, formatted as TypeScript, a typed superset of JavaScript.",
    "host_permissions": [
        "https:\/\/*.netsuite.com\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 3,
    "name": "NetSuite :: Saved Search Export to SS 2.x",
    "permissions": [],
    "version": "0.3.2",
    "web_accessible_resources": []
}