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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows user to quickly find fields in Saved Search and Workflows. Also provides additional details about fields in dropdown."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NetSuite Field Finder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}