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
Eメール [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"
    }
}