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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}