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
公式URL 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
Eメール [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"
    ]
}