NetSuite Helper for Your Works

This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0.

什麼是NetSuite Helper for Your Works?

NetSuite Helper for Your Works是由Salvatore Alparone開發的Chrome擴展程式,該擴展的主要功能是“This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0.”。

擴展截圖

screenshot
screenshot
screenshot

下載NetSuite Helper for Your Works擴展crx文件

下載NetSuite Helper for Your Works擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This is an unofficial extension to use the NetSuite platform to the better and more easily! Inside, there are the most common operations you can do with NetSuite, faster! You can also add new functionality with the Options Panel. For any request and to add new default actions please contact me to e-mail [email protected]! Thanks!                    

擴展基本資訊

名稱 NetSuite Helper for Your Works NetSuite Helper for Your Works
ID cmcbjeplgojjjgmpmagjllbnonaagcoj
官方網址 https://chromewebstore.google.com/detail/netsuite-helper-for-your/cmcbjeplgojjjgmpmagjllbnonaagcoj
簡介 This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0.
檔案大小 144 KB
安裝次數 3,101
目前版本 3.0.8
更新時間 2024-02-10
上架時間 2019-04-24
評分 5.00/5 共 6 次評分
開發者 Salvatore Alparone
電子郵箱 [email protected]
付費類型 free
支援的語言 en,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "NetSuite Helper for Your Works",
    "short_name": "NHYW",
    "description": "__MSG_manifest_description__",
    "version": "3.0.8",
    "author": "[email protected]",
    "default_locale": "en",
    "options_page": "options.html",
    "action": {
        "default_icon": "64x64-ns-logo.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "16x16-ns-logo.png",
        "48": "48x48-ns-logo.png",
        "64": "64x64-ns-logo.png",
        "128": "128x128-ns-logo.png"
    },
    "background": {
        "service_worker": "NHFS_background.js",
        "mode": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netsuite.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.netsuite.com\/*"
            ],
            "js": [
                "content_script_main.js"
            ],
            "run_at": "document_idle",
            "world": "MAIN"
        }
    ],
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab"
    ]
}