NetSuite Scripted Records

See the customizations deployed to your records

Was ist NetSuite Scripted Records?

NetSuite Scripted Records ist eine Chrome-Erweiterung, die von Marcel Pestana entwickelt wurde, und ihr Hauptmerkmal ist "See the customizations deployed to your records".

Erweiterungsscreenshots

screenshot

NetSuite Scripted Records-Erweiterungs-CRX-Datei herunterladen

Laden Sie NetSuite Scripted Records-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

                        Would you like to easily see the customizations applied to a NetSuite record? Just open this extension and it will display the User Event Scripts, Client Scripts and Workflows. It also displays if the script is deployed, status and preview the script file.

You must have access to NetSuite Scripts to use this extension.                    

Grundlegende Informationen zur Erweiterung

Name NetSuite Scripted Records NetSuite Scripted Records
ID dkhjafbceiceaidnbbilhphhkanlpkkj
Offizielle URL https://chromewebstore.google.com/detail/netsuite-scripted-records/dkhjafbceiceaidnbbilhphhkanlpkkj
Beschreibung See the customizations deployed to your records
Dateigröße 91.37 KB
Installationsanzahl 10,919
Aktuelle Version 1.5
Letztes Update 2022-10-11
Veröffentlichungsdatum 2018-08-24
Bewertung 5.00/5 Insgesamt 12 Bewertungen
Entwickler Marcel Pestana
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NetSuite Scripted Records",
    "description": "See the customizations deployed to your records",
    "author": "Marcel Pestana ",
    "homepage_url": "https:\/\/marcelpestana.com",
    "version": "1.5",
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "NetSuite Scripted Records",
        "default_popup": "popup.html",
        "default_icon": {
            "24": "img\/icon24.png",
            "32": "img\/icon32.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netsuite.com\/app\/*"
            ],
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "lib\/jquery-1.11.2.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "https:\/\/*.netsuite.com\/*"
    ],
    "web_accessible_resources": [
        "js\/scriptrecordhelper.js"
    ]
}