Pause page
Instantly pause the page when DevTools is open using a keyboard shortcut.
Что такое Pause page?
Pause page - это расширение Chrome, разработанное oliverjash, и его основная функция - "Instantly pause the page when DevTools is open using a keyboard shortcut.".
Снимки экрана расширения
Скачать файл CRX расширения Pause page
Скачайте файлы расширений Pause page в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Instantly pause the page when DevTools is open using a keyboard shortcut. This makes it easy to inspect an element at a specific point in time. For example, for elements like popovers or dropdowns, visibility is often controlled using JavaScript events like `mousemove`/`mouseleave`, so when we try to inspect these elements, they disappear from the page because the cursor moved or keyboard focus changed. If we pause the page once the element is visible then it won't disappear when we move the cursor or change keyboard focus, thereby allowing us to inspect the element and its styles.
Основная информация о расширении
Название | Pause page |
ID | aephmjhanjgbapahgbbkfhpianhbmeed |
Официальный URL | https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed |
Описание | Instantly pause the page when DevTools is open using a keyboard shortcut. |
Размер файла | 5.95 KB |
Количество установок | 428 |
Текущая Версия | 1.0 |
Последнее Обновление | 2021-11-23 |
Дата публикации | 2021-11-23 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | oliverjash |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/OliverJAsh/chrome-extension-pause-page |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pause page", "description": "Instantly pause the page when DevTools is open using a keyboard shortcut.", "permissions": [ "activeTab" ], "manifest_version": 2, "version": "1.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "pause": { "suggested_key": { "default": "Ctrl+Shift+U", "mac": "Command+Shift+U" }, "description": "Pause" } }, "icons": { "128": "icon.png" } } |