Pause & Inspect

Pauses Javascript execution then inspects the element

Apa itu Pause & Inspect?

Pause & Inspect adalah ekstensi Chrome yang dikembangkan oleh MBApps, dan fitur utamanya adalah "Pauses Javascript execution then inspects the element".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Pause & Inspect

Unduh file ekstensi Pause & Inspect dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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"                    

Informasi Dasar Ekstensi

Nama Pause & Inspect Pause & Inspect
ID khifhkacmckcocoeolmpmobbmkdlbjdc
URL Resmi https://chromewebstore.google.com/detail/pause-inspect/khifhkacmckcocoeolmpmobbmkdlbjdc
Deskripsi Pauses Javascript execution then inspects the element
Ukuran File 14.65 KB
Jumlah Instalasi 262
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2020-04-21
Tanggal Publikasi 2020-04-17
Penilaian 3.00/5 Total 2 Penilaian
Pengembang MBApps
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        ]
    }
}