Pause page
Instantly pause the page when DevTools is open using a keyboard shortcut.
O que é Pause page?
Pause page é uma extensão do Chrome desenvolvida por oliverjash, e sua principal característica é "Instantly pause the page when DevTools is open using a keyboard shortcut.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Pause page
Baixe arquivos de extensão Pause page no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Pause page |
ID | aephmjhanjgbapahgbbkfhpianhbmeed |
URL Oficial | https://chromewebstore.google.com/detail/pause-page/aephmjhanjgbapahgbbkfhpianhbmeed |
Descrição | Instantly pause the page when DevTools is open using a keyboard shortcut. |
Tamanho do Arquivo | 5.95 KB |
Contagem de Instalações | 428 |
Versão Atual | 1.0 |
Última Atualização | 2021-11-23 |
Data de Publicação | 2021-11-23 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | oliverjash |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/OliverJAsh/chrome-extension-pause-page |
Idiomas Suportados | 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" } } |