Netsuite SuiteScript Explorer

Chrome extension that allows Netsuite developers to find a SuiteScript file by searching for a specific string within that file.

Netsuite SuiteScript Explorer란 무엇입니까?

Netsuite SuiteScript Explorer은(는) felipenahuelviera에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension that allows Netsuite developers to find a SuiteScript file by searching for a specific string within that file."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Netsuite SuiteScript Explorer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Github page: https://github.com/Shifter24/Netsuite-SuiteScript-Explorer

NetSuite SuiteScript Explorer is a Chrome extension designed to assist NetSuite developers in finding scripts with specific functionality. It provides a user-friendly interface for effortlessly locating Suite Script files that contain a particular string.

Key Features:

- Quick script search functionality.
- Option to search for whole words or partial matches
- Export search results to JSON, TXT, and CSV (with future improvements planned).
- Open multiple script tabs simultaneously.
- Filter search results by script type.

NetSuite SuiteScript Explorer streamlines the process of locating relevant files, empowering NetSuite developers to efficiently search and analyze Suite Scripts within the NetSuite platform.                    

확장 프로그램 기본 정보

이름 Netsuite SuiteScript Explorer Netsuite SuiteScript Explorer
ID fnbdepihngngmaclhaofloikdlemomhd
공식 URL https://chromewebstore.google.com/detail/netsuite-suitescript-expl/fnbdepihngngmaclhaofloikdlemomhd
설명 Chrome extension that allows Netsuite developers to find a SuiteScript file by searching for a specific string within that file.
파일 크기 80.16 KB
설치 횟수 388
현재 버전 0.1.3
최근 업데이트 2023-07-15
출시 날짜 2023-07-12
평점 5.00/5 총 4 개의 평점
개발자 felipenahuelviera
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Shifter24/Netsuite-SuiteScript-Explorer
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netsuite SuiteScript Explorer",
    "description": "Chrome extension that allows Netsuite developers to find a SuiteScript file by searching for a specific string within that file.",
    "version": "0.1.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icon16.png",
            "32": "assets\/icon32.png",
            "128": "assets\/icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting",
        "tabs",
        "declarativeContent"
    ],
    "host_permissions": [
        "https:\/\/*.netsuite.com\/app\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject-script.js"
            ],
            "matches": [
                "https:\/\/*.netsuite.com\/*"
            ]
        }
    ]
}