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
官方網址 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"
    }
}