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.

Qu'est-ce que NetSuite Helper for Your Works ?

NetSuite Helper for Your Works est une extension Chrome développée par Salvatore Alparone, et sa fonction principale est "This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension NetSuite Helper for Your Works

Téléchargez les fichiers d'extension NetSuite Helper for Your Works au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom NetSuite Helper for Your Works NetSuite Helper for Your Works
ID cmcbjeplgojjjgmpmagjllbnonaagcoj
URL Officiel https://chromewebstore.google.com/detail/netsuite-helper-for-your/cmcbjeplgojjjgmpmagjllbnonaagcoj
Description This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0.
Taille du Fichier 144 KB
Nombre d'Installations 3,101
Version Actuelle 3.0.8
Dernière Mise à Jour 2024-02-10
Date de Publication 2019-04-24
Évaluation 5.00/5 Total 6 Évaluations
Développeur Salvatore Alparone
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}