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 David Smith द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hover over NetSuite fields to show their IDs. Find fields by their ID or Label."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NetSuite: Show Field IDs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}