Suitefield: NetSuite Field Enhanced Help

This extension allows you to see all fields settings and details from a record.

Suitefield: NetSuite Field Enhanced Help란 무엇입니까?

Suitefield: NetSuite Field Enhanced Help은(는) Roberto Cideos에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to see all fields settings and details from a record."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Suitefield: NetSuite Field Enhanced Help 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Suitefield is an enhancement to NetSuite field help. It allows you to see more details and settings from NetSuite custom fields on a specific record while you are logged in. You can jump in directly to the field settings page without having to change tabs and without searching manually for the field you need the information from, you can also conveniently open the current record in the record catalog to search for field definitions. 

You can turn the extension "On" only when you require it just by clicking on the extension icon in the top right corner of your Chrome browser.

Release:
v1.0.2: Includes link element to open current record in "Record Catalog".                    

확장 프로그램 기본 정보

이름 Suitefield: NetSuite Field Enhanced Help Suitefield: NetSuite Field Enhanced Help
ID ajcgpekaekphjhpglkfmjghcadjgibog
공식 URL https://chromewebstore.google.com/detail/suitefield-netsuite-field/ajcgpekaekphjhpglkfmjghcadjgibog
설명 This extension allows you to see all fields settings and details from a record.
파일 크기 23.36 KB
설치 횟수 199
현재 버전 1.0.2
최근 업데이트 2023-05-12
출시 날짜 2023-05-07
평점 5.00/5 총 2 개의 평점
개발자 Roberto Cideos
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Suitefield: NetSuite Field Enhanced Help",
    "description": "This extension allows you to see all fields settings and details from a record.",
    "manifest_version": 3,
    "version": "1.0.2",
    "background": {
        "service_worker": "suitefieldbackground.js"
    },
    "action": {
        "default_icon": {
            "128": "assets\/suitefield-icon.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting",
        "declarativeContent",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/suitefieldnetscript.js",
                "assets\/icons8-zoom-in-64.png",
                "suitefieldcontentscript.js",
                "suitefld.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netsuite.com\/app\/*"
            ],
            "js": [
                "suitefieldcontentscript.js"
            ],
            "css": [
                "suitefld.css"
            ]
        }
    ],
    "icons": {
        "128": "assets\/suitefield-icon.png"
    }
}