Pause & Inspect

Pauses Javascript execution then inspects the element

Vad är Pause & Inspect?

Pause & Inspect är en Chrome-tillägg utvecklad av MBApps, och dess huvudfunktion är "Pauses Javascript execution then inspects the element".

Tilläggsskärmbilder

screenshot

Ladda ner Pause & Inspect-förlängningens CRX-fil

Ladda ner Pause & Inspect-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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"                    

Grundläggande Information om Tillägg

Namn Pause & Inspect Pause & Inspect
ID khifhkacmckcocoeolmpmobbmkdlbjdc
Officiell webbadress https://chromewebstore.google.com/detail/pause-inspect/khifhkacmckcocoeolmpmobbmkdlbjdc
Beskrivning Pauses Javascript execution then inspects the element
Filstorlek 14.65 KB
Antal Installationer 262
Aktuell Version 1.0.1
Senast Uppdaterad 2020-04-21
Publiceringsdatum 2020-04-17
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare MBApps
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        ]
    }
}