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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

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

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

                        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
ईमेल [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"
    ]
}