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扩展程序,该扩展的主要功能是“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

下载Netsuite SuiteScript Explorer扩展crx文件

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