Pause & Inspect

Pauses Javascript execution then inspects the element

Pause & Inspectคืออะไร?

Pause & Inspect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MBApps และคุณลักษณะหลักของมันคือ "Pauses Javascript execution then inspects the element"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pause & Inspect

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
        ]
    }
}