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.
Was ist NetSuite Helper for Your Works?
NetSuite Helper for Your Works ist eine Chrome-Erweiterung, die von Salvatore Alparone entwickelt wurde, und ihr Hauptmerkmal ist "This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0.".
Erweiterungsscreenshots
NetSuite Helper for Your Works-Erweiterungs-CRX-Datei herunterladen
Laden Sie NetSuite Helper for Your Works-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | NetSuite Helper for Your Works |
ID | cmcbjeplgojjjgmpmagjllbnonaagcoj |
Offizielle URL | https://chromewebstore.google.com/detail/netsuite-helper-for-your/cmcbjeplgojjjgmpmagjllbnonaagcoj |
Beschreibung | This extension helps to speed up the normal use of the NetSuite platform, through the use of SuiteScript 1.0. |
Dateigröße | 144 KB |
Installationsanzahl | 3,101 |
Aktuelle Version | 3.0.8 |
Letztes Update | 2024-02-10 |
Veröffentlichungsdatum | 2019-04-24 |
Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
Entwickler | Salvatore Alparone |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |