Pause & Inspect
Pauses Javascript execution then inspects the element
Что такое Pause & Inspect?
Pause & Inspect - это расширение Chrome, разработанное MBApps, и его основная функция - "Pauses Javascript execution then inspects the element".
Снимки экрана расширения
Скачать файл 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 |
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": [ " |