Netsuite SuiteScript Explorer

Chrome extension that allows Netsuite developers to find a SuiteScript file by searching for a specific string within that file.

Τι είναι το Netsuite SuiteScript Explorer;

Το Netsuite SuiteScript Explorer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον felipenahuelviera, και η κύρια λειτουργία του είναι "Chrome extension that allows Netsuite developers to find a SuiteScript file by searching for a specific string within that file.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Netsuite SuiteScript Explorer

Λήψη αρχείων επέκτασης Netsuite SuiteScript Explorer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Github page: https://github.com/Shifter24/Netsuite-SuiteScript-Explorer

NetSuite SuiteScript Explorer is a Chrome extension designed to assist NetSuite developers in finding scripts with specific functionality. It provides a user-friendly interface for effortlessly locating Suite Script files that contain a particular string.

Key Features:

- Quick script search functionality.
- Option to search for whole words or partial matches
- Export search results to JSON, TXT, and CSV (with future improvements planned).
- Open multiple script tabs simultaneously.
- Filter search results by script type.

NetSuite SuiteScript Explorer streamlines the process of locating relevant files, empowering NetSuite developers to efficiently search and analyze Suite Scripts within the NetSuite platform.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Netsuite SuiteScript Explorer Netsuite SuiteScript Explorer
ID fnbdepihngngmaclhaofloikdlemomhd
Επίσημο URL https://chromewebstore.google.com/detail/netsuite-suitescript-expl/fnbdepihngngmaclhaofloikdlemomhd
Περιγραφή Chrome extension that allows Netsuite developers to find a SuiteScript file by searching for a specific string within that file.
Μέγεθος Αρχείου 80.16 KB
Αριθμός Εγκαταστάσεων 388
Τρέχουσα Έκδοση 0.1.3
Τελευταία Ενημέρωση 2023-07-15
Ημερομηνία Δημοσίευσης 2023-07-12
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής felipenahuelviera
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Shifter24/Netsuite-SuiteScript-Explorer
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netsuite SuiteScript Explorer",
    "description": "Chrome extension that allows Netsuite developers to find a SuiteScript file by searching for a specific string within that file.",
    "version": "0.1.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icon16.png",
            "32": "assets\/icon32.png",
            "128": "assets\/icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting",
        "tabs",
        "declarativeContent"
    ],
    "host_permissions": [
        "https:\/\/*.netsuite.com\/app\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject-script.js"
            ],
            "matches": [
                "https:\/\/*.netsuite.com\/*"
            ]
        }
    ]
}