Freeze DOM

Freeze the DOM instantly

Freeze DOM क्या है?

Freeze DOM https://nemothecollector.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Freeze the DOM instantly"।

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

screenshot
screenshot
screenshot

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

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

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

                        Pause the DOM on demand for testing and debugging purpose.

How to use:
- Step 0: Open DevTools Panel (F12 or Right Click -> select 'Inspect')
- Step 1: Right Click -> select 'Freeze DOM'  or Press Cmd + Shift + S (on Mac) / Cmd + Shift + S (on Window, Ubuntu)

Right click on tab content and choose "Freeze DOM" (while devtool panel is open) to freeze the state of website on demand.

With a frozen DOM, you can:
- Inspect an UI part that only available while hovered / focused (for example: keeping the auto complete dropdown of a text input visible)
- Take a snapshot of an in-progress state (for example: loading state)


🔭 Explore more dev tools at: https://nemothecollector.dev/products

Note: The shortcut might be overridden by built-in settings of some browsers for example Arc and Microsoft Edge. To fix it:
- For Arc: go to arc://extensions/shortcuts and update the shortkeys
- For Microsoft Edge: follow this instruction https://www.webnots.com/how-to-assign-keyboard-shortcut-to-extension-in-microsoft-edge/                    

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

नाम Freeze DOM Freeze DOM
ID onekmnelbichmlnmkecckkjjljifhefg
आधिकारिक URL https://chromewebstore.google.com/detail/freeze-dom/onekmnelbichmlnmkecckkjjljifhefg
विवरण Freeze the DOM instantly
फ़ाइल का आकार 34.97 KB
स्थापना संख्या 498
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2024-01-30
प्रकाशन तिथि 2023-08-31
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर https://nemothecollector.dev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Freeze DOM",
    "version": "0.0.1",
    "description": "Freeze the DOM instantly",
    "manifest_version": 3,
    "permissions": [
        "contextMenus",
        "scripting",
        "activeTab"
    ],
    "commands": {
        "freeze-dom": {
            "suggested_key": "Ctrl+Shift+S",
            "description": "Freeze the DOM instantly"
        }
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}