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은(는) Nathan Fiedler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Export a NetSuite Saved Search to SuiteScript 2.x, formatted as TypeScript, a typed superset of JavaScript."입니다.

확장 프로그램 스크린샷

screenshot

NetSuite :: Saved Search Export to SS 2.x 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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