Pause & Inspect

Pauses Javascript execution then inspects the element

Wat is Pause & Inspect?

Pause & Inspect is een Chrome-extensie ontwikkeld door MBApps, en de belangrijkste functie is "Pauses Javascript execution then inspects the element".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Pause & Inspect

Download Pause & Inspect-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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"                    

Basisinformatie over de Extensie

Naam Pause & Inspect Pause & Inspect
ID khifhkacmckcocoeolmpmobbmkdlbjdc
Officiële URL https://chromewebstore.google.com/detail/pause-inspect/khifhkacmckcocoeolmpmobbmkdlbjdc
Beschrijving Pauses Javascript execution then inspects the element
Bestandsgrootte 14.65 KB
Aantal Installaties 262
Huidige Versie 1.0.1
Laatst Bijgewerkt 2020-04-21
Publicatiedatum 2020-04-17
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar MBApps
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}