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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        ]
    }
}