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文件

下载NetSuite Advanced Field Help扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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