NetSuite: Show Field IDs

Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.

NetSuite: Show Field IDsคืออะไร?

NetSuite: Show Field IDs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Smith และคุณลักษณะหลักของมันคือ "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย NetSuite: Show Field IDs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Great for developers and anyone else that uses NetSuite and frequently needs to know the field IDs on a record. Hover over the field link to view the ID. Click the link has no change to the NetSuite help popup. 

Shift+Click the link to copy the ID to the clipboard!

Can't find that field? Ctrl+Shift+F and enter your ID! Ctrl+Shift+L to find by Label. We'll find it for you if it's on the page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ NetSuite: Show Field IDs NetSuite: Show Field IDs
ID pnhdmfiakolonplgblabffnpfhfplmbh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netsuite-show-field-ids/pnhdmfiakolonplgblabffnpfhfplmbh
คำอธิบาย Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.
ขนาดไฟล์ 46.16 KB
จำนวนการติดตั้ง 11,792
เวอร์ชันปัจจุบัน 1.50
อัปเดตครั้งล่าสุด 2022-06-30
วันที่เผยแพร่ 2017-06-22
คะแนน 4.85/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา David Smith
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NetSuite: Show Field IDs",
    "version": "1.50",
    "description": "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.",
    "icons": {
        "128": "ns-show-field-ids-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netsuite.com\/app\/*"
            ],
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "jquery-1.11.2.min.js",
                "nsfieldids.js"
            ]
        }
    ],
    "permissions": [],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}