NetSuite Advanced Field Help

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

Apa itu NetSuite Advanced Field Help?

NetSuite Advanced Field Help adalah ekstensi Chrome yang dikembangkan oleh Marcel Pestana, dan fitur utamanya adalah "Extends the NetSuite Field Help and adds relevant information to improve your productivity.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi NetSuite Advanced Field Help

Unduh file ekstensi NetSuite Advanced Field Help dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        * 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.                    

Informasi Dasar Ekstensi

Nama NetSuite Advanced Field Help NetSuite Advanced Field Help
ID ehgcekpdldhgfjpionbkilpnaahjiejj
URL Resmi https://chromewebstore.google.com/detail/netsuite-advanced-field-h/ehgcekpdldhgfjpionbkilpnaahjiejj
Deskripsi Extends the NetSuite Field Help and adds relevant information to improve your productivity.
Ukuran File 46.93 KB
Jumlah Instalasi 10,000
Versi Saat Ini 2.13
Terakhir Diperbarui 2022-10-01
Tanggal Publikasi 2020-03-17
Penilaian 4.44/5 Total 27 Penilaian
Pengembang Marcel Pestana
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
}