NetSuite Scripted Records

See the customizations deployed to your records

NetSuite Scripted Recordsとは何ですか?

NetSuite Scripted RecordsはMarcel Pestanaによって開発されたChromeの拡張機能で、その主な機能は「See the customizations deployed to your records」です。

拡張機能のスクリーンショット

screenshot

NetSuite Scripted Records拡張機能のCRXファイルをダウンロード

NetSuite Scripted Records拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 NetSuite Scripted Records NetSuite Scripted Records
ID dkhjafbceiceaidnbbilhphhkanlpkkj
公式URL https://chromewebstore.google.com/detail/netsuite-scripted-records/dkhjafbceiceaidnbbilhphhkanlpkkj
説明 See the customizations deployed to your records
ファイルサイズ 91.37 KB
インストール数 10,919
現在のバージョン 1.5
最終更新日 2022-10-11
公開日 2018-08-24
評価 5.00/5 合計 12 レビュー
開発者 Marcel Pestana
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}