NetSuite Field Finder

Allows user to quickly find fields in Saved Search and Workflows. Also provides additional details about fields in dropdown.

NetSuite Field Finder란 무엇입니까?

NetSuite Field Finder은(는) Eric Lackey에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows user to quickly find fields in Saved Search and Workflows. Also provides additional details about fields in dropdown."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

NetSuite Field Finder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        If you're tired of scrolling through 500+ fields in NetSuite to build a Saved Search or Workflow, NetSuite Field Finder will make your job easier. 

NetSuite Field Finder allows you to find the fields you need quickly by filtering by field type or by searching with a Name or field ID. It also improves the field listing by displaying the field's internal ID and type.

Features include:
- Search by Field Name or Field ID
- Narrow results by Standard, Custom or Related Fields
- View Field ID, Field Type and Data Type
- Add multiple fields to search results without leaving dropdown
- Expand and add related table fields without leaving dropdown

View the latest release updates of NetSuite Field Finder at https://github.com/ericlackey/netsuite-field-finder.                    

확장 프로그램 기본 정보

이름 NetSuite Field Finder NetSuite Field Finder
ID npehdolgmmdncpmkoploaeljhkngjbne
공식 URL https://chromewebstore.google.com/detail/netsuite-field-finder/npehdolgmmdncpmkoploaeljhkngjbne
설명 Allows user to quickly find fields in Saved Search and Workflows. Also provides additional details about fields in dropdown.
파일 크기 94.78 KB
설치 횟수 6,589
현재 버전 0.28
최근 업데이트 2024-01-31
출시 날짜 2022-10-20
평점 4.79/5 총 19 개의 평점
개발자 Eric Lackey
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ericlackey/netsuite-field-finder/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NetSuite Field Finder",
    "version": "0.28",
    "description": "Allows user to quickly find fields in Saved Search and Workflows. Also provides additional details about fields in dropdown.",
    "content_scripts": [
        {
            "css": [
                "css\/fieldfinder.css"
            ],
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*.app.netsuite.com\/app\/common\/search\/*",
                "https:\/\/*.app.netsuite.com\/app\/common\/workflow\/setup\/*",
                "https:\/\/*.app.netsuite.com\/app\/common\/custom\/bodycustfield.nl*"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fieldfinder.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_title": "NetSuite Field Finder",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icon128.png"
    }
}