NetSuite: Show Field IDs

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

NetSuite: Show Field IDs là gì?

NetSuite: Show Field IDs là một tiện ích mở rộng Chrome được phát triển bởi David Smith, và tính năng chính của nó là "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng NetSuite: Show Field IDs

Tải xuống các tệp mở rộng NetSuite: Show Field IDs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NetSuite: Show Field IDs NetSuite: Show Field IDs
ID pnhdmfiakolonplgblabffnpfhfplmbh
URL Chính Thức https://chromewebstore.google.com/detail/netsuite-show-field-ids/pnhdmfiakolonplgblabffnpfhfplmbh
Mô tả Hover over NetSuite fields to show their IDs. Find fields by their ID or Label.
Kích Thước Tệp 46.16 KB
Số Lần Cài Đặt 11,792
Phiên Bản Hiện Tại 1.50
Cập Nhật Lần Cuối 2022-06-30
Ngày Phát Hành 2017-06-22
Đánh Giá 4.85/5 Tổng số 27 Đánh Giá
Nhà Phát Triển David Smith
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}