Pause & Inspect

Pauses Javascript execution then inspects the element

What is Pause & Inspect?

Pause & Inspect is a Chrome extension developed by MBApps, and its main feature is "Pauses Javascript execution then inspects the element".

Extension Screenshots

screenshot

Download Pause & Inspect Extension CRX File

Download Pause & Inspect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A simple extension that allows you to pause Javascript execution and inspect an element.

The main use case for this extension is to allow you to inspect dynamically created elements that disappear when focus is taken from them eg. dropdowns.

How to use:
- Open devtools. Nothing will happen if you don't have the devtools already open.
- Right click on the element you want to inspect and select "Pause inspect".
- Or alternatively hover over the element you want to select and press "Ctrl + Shift + X"                    

Extension Basic Information

Name Pause & Inspect Pause & Inspect
ID khifhkacmckcocoeolmpmobbmkdlbjdc
Official URL https://chromewebstore.google.com/detail/pause-inspect/khifhkacmckcocoeolmpmobbmkdlbjdc
Description Pauses Javascript execution then inspects the element
File Size 14.65 KB
Installation Count 262
Current Version 1.0.1
Last Updated 2020-04-21
Publish Date 2020-04-17
Rating 3.00/5 Total 2 Ratings
Developer MBApps
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pause & Inspect",
    "description": "Pauses Javascript execution then inspects the element",
    "version": "1.0.1",
    "browser_action": {
        "default_popup": "html\/popup.html"
    },
    "devtools_page": "html\/devtools.html",
    "permissions": [
        "contextMenus"
    ],
    "commands": {
        "pause-inspect": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Pauses and inspects element"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}