Network Chunks

Track the chunks fetched over the Network

Network Chunks क्या है?

Network Chunks devxmofficial द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Track the chunks fetched over the Network"।

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

screenshot
screenshot
screenshot

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

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

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

                        Capture the chunks fetched over the Network and copy them to your .env.chunks.local file                    

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

नाम Network Chunks Network Chunks
ID cdhpofaebcgpabjpdfgfddjhfaloflkj
आधिकारिक URL https://chromewebstore.google.com/detail/network-chunks/cdhpofaebcgpabjpdfgfddjhfaloflkj
विवरण Track the chunks fetched over the Network
फ़ाइल का आकार 187 KB
स्थापना संख्या 113
वर्तमान संस्करण 1.0
अंतिम अपडेट 2022-08-05
प्रकाशन तिथि 2022-08-05
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर devxmofficial
ईमेल devxmofficial@gmail.com
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.sprinklr.com/privacy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Network Chunks",
    "description": "Track the chunks fetched over the Network",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html",
        "default_title": "Network Chunks"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.sprinklr.com\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "https:\/\/*.sprinklr.com\/*"
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js"
    },
    "icons": {
        "16": "logo192.png",
        "48": "logo192.png",
        "128": "logo192.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "tabs"
    ]
}