Pause & Inspect

Pauses Javascript execution then inspects the element

Cos'è Pause & Inspect?

Pause & Inspect è un'estensione di Chrome sviluppata da MBApps, e la sua funzione principale è "Pauses Javascript execution then inspects the element".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Pause & Inspect

Scarica i file di estensione Pause & Inspect in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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"                    

Informazioni di Base sull'Estensione

Nome Pause & Inspect Pause & Inspect
ID khifhkacmckcocoeolmpmobbmkdlbjdc
URL Ufficiale https://chromewebstore.google.com/detail/pause-inspect/khifhkacmckcocoeolmpmobbmkdlbjdc
Descrizione Pauses Javascript execution then inspects the element
Dimensione del File 14.65 KB
Conteggio Installazioni 262
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-04-21
Data di Pubblicazione 2020-04-17
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore MBApps
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}