Pause & Inspect

Pauses Javascript execution then inspects the element

Co to jest Pause & Inspect?

Pause & Inspect to rozszerzenie Chrome opracowane przez MBApps, a jego główną funkcją jest „Pauses Javascript execution then inspects the element”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Pause & Inspect

Pobierz pliki rozszerzeń Pause & Inspect w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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"                    

Podstawowe informacje o rozszerzeniu

Nazwa Pause & Inspect Pause & Inspect
ID khifhkacmckcocoeolmpmobbmkdlbjdc
Oficjalny URL https://chromewebstore.google.com/detail/pause-inspect/khifhkacmckcocoeolmpmobbmkdlbjdc
Opis Pauses Javascript execution then inspects the element
Rozmiar pliku 14.65 KB
Liczba instalacji 262
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2020-04-21
Data Publikacji 2020-04-17
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper MBApps
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}