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

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

扩展使用说明

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