Pause & Inspect

Pauses Javascript execution then inspects the element

什麼是Pause & Inspect?

Pause & Inspect是由MBApps開發的Chrome擴展程式,該擴展的主要功能是“Pauses Javascript execution then inspects the element”。

擴展截圖

screenshot

下載Pause & Inspect擴展crx文件

下載Pause & Inspect擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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"                    

擴展基本資訊

名稱 Pause & Inspect Pause & Inspect
ID khifhkacmckcocoeolmpmobbmkdlbjdc
官方網址 https://chromewebstore.google.com/detail/pause-inspect/khifhkacmckcocoeolmpmobbmkdlbjdc
簡介 Pauses Javascript execution then inspects the element
檔案大小 14.65 KB
安裝次數 262
目前版本 1.0.1
更新時間 2020-04-21
上架時間 2020-04-17
評分 3.00/5 共 2 次評分
開發者 MBApps
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        ]
    }
}