NetSuite Scripted Records

See the customizations deployed to your records

Co je NetSuite Scripted Records?

NetSuite Scripted Records je rozšíření Chrome vyvinuté Marcel Pestana, a jeho hlavní funkcí je „See the customizations deployed to your records“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření NetSuite Scripted Records

Stáhněte si soubory rozšíření NetSuite Scripted Records ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název NetSuite Scripted Records NetSuite Scripted Records
ID dkhjafbceiceaidnbbilhphhkanlpkkj
Oficiální URL https://chromewebstore.google.com/detail/netsuite-scripted-records/dkhjafbceiceaidnbbilhphhkanlpkkj
Popis See the customizations deployed to your records
Velikost souboru 91.37 KB
Počet instalací 10,919
Aktuální Verze 1.5
Poslední Aktualizace 2022-10-11
Datum Vydání 2018-08-24
Hodnocení 5.00/5 Celkem 12 Hodnocení
Vývojář Marcel Pestana
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}