Pause & Inspect

Pauses Javascript execution then inspects the element

O que é Pause & Inspect?

Pause & Inspect é uma extensão do Chrome desenvolvida por MBApps, e sua principal característica é "Pauses Javascript execution then inspects the element".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Pause & Inspect

Baixe arquivos de extensão Pause & Inspect no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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"                    

Informações Básicas da Extensão

Nome Pause & Inspect Pause & Inspect
ID khifhkacmckcocoeolmpmobbmkdlbjdc
URL Oficial https://chromewebstore.google.com/detail/pause-inspect/khifhkacmckcocoeolmpmobbmkdlbjdc
Descrição Pauses Javascript execution then inspects the element
Tamanho do Arquivo 14.65 KB
Contagem de Instalações 262
Versão Atual 1.0.1
Última Atualização 2020-04-21
Data de Publicação 2020-04-17
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor MBApps
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}