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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Netsuite SuiteScript Explorer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
            ]
        }
    ]
}