NetSuite Advanced Field Help

Extends the NetSuite Field Help and adds relevant information to improve your productivity.

NetSuite Advanced Field Help란 무엇입니까?

NetSuite Advanced Field Help은(는) Marcel Pestana에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extends the NetSuite Field Help and adds relevant information to improve your productivity."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

NetSuite Advanced Field Help 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        * It supports NetSuite v2022.2 now. *

This extension extends the NetSuite Field Help popup and includes additional details about the field. It shows the field value and field text. If it's a custom field, it includes a link to the field as well as its type.

Context Menu: Right click on a field to see the field id, list name and field value.                    

확장 프로그램 기본 정보

이름 NetSuite Advanced Field Help NetSuite Advanced Field Help
ID ehgcekpdldhgfjpionbkilpnaahjiejj
공식 URL https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj
설명 Extends the NetSuite Field Help and adds relevant information to improve your productivity.
파일 크기 46.93 KB
설치 횟수 10,000
현재 버전 2.13
최근 업데이트 2022-10-01
출시 날짜 2020-03-17
평점 4.44/5 총 27 개의 평점
개발자 Marcel Pestana
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NetSuite Advanced Field Help",
    "version": "2.13",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Extends the NetSuite Field Help and adds relevant information to improve your productivity.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netsuite.com\/app\/*"
            ],
            "all_frames": false,
            "run_at": "document_end",
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-1.11.2.min.js",
                "nsadvfieldhelp.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "functions.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}