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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Roberto Cideos และคุณลักษณะหลักของมันคือ "This extension allows you to see all fields settings and details from a record."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Suitefield: NetSuite Field Enhanced Help

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}