Debugger Shortcut
Stop javascript execution by pressing a keyboard shortcut.
O que é Debugger Shortcut?
Debugger Shortcut é uma extensão do Chrome desenvolvida por http://vadim.sikora.name, e sua principal característica é "Stop javascript execution by pressing a keyboard shortcut.".
Baixar o arquivo CRX da Extensão Debugger Shortcut
Baixe arquivos de extensão Debugger Shortcut 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
Sometimes you may find yourself in a situation when you want to debug specific dom on the page, but cannot catch the right moment to inspect it. With this extension you can specify a shortcut to quickly enable debugger while it's still on the page. Works for iframes and nested iframes as well. Screenshots: http://vadim.sikora.name/debugger-shortcut-extension/
Informações Básicas da Extensão
Nome | |
ID | gjaeepjbfieiimehgjfpmaffegliiaea |
URL Oficial | https://chrome.google.com/webstore/detail/gjaeepjbfieiimehgjfpmaffegliiaea |
Descrição | Stop javascript execution by pressing a keyboard shortcut. |
Tamanho do Arquivo | 8.93 KB |
Contagem de Instalações | 29 |
Versão Atual | 0.2.5 |
Última Atualização | 2017-06-24 |
Data de Publicação | 2017-06-24 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | http://vadim.sikora.name |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/vxsx/debugger-shortcut-extension |
URL da Página de Ajuda | https://github.com/vxsx/debugger-shortcut-extension/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Debugger Shortcut", "version": "0.2.5", "manifest_version": 2, "description": "Stop javascript execution by pressing a keyboard shortcut.", "homepage_url": "http:\/\/github.com\/vxsx\/debugger-shortcut-extension", "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "page_action": { "default_icon": "icons\/icon38.png", "default_title": "Options for Debugger Shortcut.", "default_popup": "src\/page_action\/page_action.html" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |