Pause page

Instantly pause the page when DevTools is open using a keyboard shortcut.

Pause page क्या है?

Pause page oliverjash द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Instantly pause the page when DevTools is open using a keyboard shortcut."।

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

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

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

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

                        Instantly pause the page when DevTools is open using a keyboard shortcut. This makes it easy to inspect an element at a specific point in time. For example, for elements like popovers or dropdowns, visibility is often controlled using JavaScript events like `mousemove`/`mouseleave`, so when we try to inspect these elements, they disappear from the page because the cursor moved or keyboard focus changed. If we pause the page once the element is visible then it won't disappear when we move the cursor or change keyboard focus, thereby allowing us to inspect the element and its styles.                    

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

नाम Pause page Pause page
ID aephmjhanjgbapahgbbkfhpianhbmeed
आधिकारिक URL https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed
विवरण Instantly pause the page when DevTools is open using a keyboard shortcut.
फ़ाइल का आकार 5.95 KB
स्थापना संख्या 428
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-11-23
प्रकाशन तिथि 2021-11-23
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर oliverjash
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/OliverJAsh/chrome-extension-pause-page
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pause page",
    "description": "Instantly pause the page when DevTools is open using a keyboard shortcut.",
    "permissions": [
        "activeTab"
    ],
    "manifest_version": 2,
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "pause": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "Command+Shift+U"
            },
            "description": "Pause"
        }
    },
    "icons": {
        "128": "icon.png"
    }
}