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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Eric Lackey, και η κύρια λειτουργία του είναι "Allows user to quickly find fields in Saved Search and Workflows. Also provides additional details about fields in dropdown.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης NetSuite Field Finder

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
    }
}