Next Experience Developer Tools

Debugging/Profiling tools for your ServiceNow Next Experiences.

Next Experience Developer Tools क्या है?

Next Experience Developer Tools ServiceNow द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Debugging/Profiling tools for your ServiceNow Next Experiences."।

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

screenshot

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

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

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

                        The extension is composed of two panels: 🔎 Next Exp Inspector and 📈 Next Exp Profiler.

🔎 The Next Exp Inspector has the capability to observe page behavior and access component details via four distinct tabs.

•    Components: analyze the DOM tree and inspect a component’s properties, state and actions.
•    Actions: view a list of actions dispatched by the page and generate a new custom action when needed for testing.
•    Transactions: view a list of events grouped by transaction and ordered by duration to better understand the sequence of events on the page.
•    Logs: view a list of logs that have been emitted across the page.

📈 Next Exp Profiler allows you to create, manage, and compare profiles for optimizing page performance proactively.

•    Profile: view detailed information about the page execution to understand its performance and opportunities for optimizations.
•    Compare: See what has changed between two profiles by viewing differences across different event types.  This helps identify areas of focus when troubleshooting performance degradation.                    

एक्सटेंशन की मूल जानकारी

नाम Next Experience Developer Tools Next Experience Developer Tools
ID ilkodijinjhpdnnfpccijledlapkfmhc
आधिकारिक URL https://chromewebstore.google.com/detail/next-experience-developer/ilkodijinjhpdnnfpccijledlapkfmhc
विवरण Debugging/Profiling tools for your ServiceNow Next Experiences.
फ़ाइल का आकार 2.33 MB
स्थापना संख्या 1,402
वर्तमान संस्करण 3.1.5
अंतिम अपडेट 2023-12-15
प्रकाशन तिथि 2023-08-04
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर ServiceNow
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.servicenow.com/service-privacy.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Next Experience Developer Tools",
    "version": "3.1.5",
    "version_name": "3.1.5",
    "minimum_chrome_version": "100",
    "description": "Debugging\/Profiling tools for your ServiceNow Next Experiences.",
    "homepage_url": "https:\/\/developer.servicenow.com\/dev.do#!\/reference\/next-experience\/vancouver\/seismic-devtools\/getting-started",
    "devtools_page": "devtools.html",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
    },
    "background": {
        "service_worker": "background-script.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "injected-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/now.png",
            "32": "images\/now.png",
            "48": "images\/now.png",
            "128": "images\/now.png"
        }
    },
    "icons": {
        "16": "images\/now.png",
        "32": "images\/now.png",
        "48": "images\/now.png",
        "128": "images\/now.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}