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ファイルをダウンロード

NetSuite Field Finder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}