ElementHistory
See what code created or updated a DOM element
O que é ElementHistory?
ElementHistory é uma extensão do Chrome desenvolvida por Matt Zeunert, e sua principal característica é "See what code created or updated a DOM element".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ElementHistory
Baixe arquivos de extensão ElementHistory 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
Turn on element history in a tab by clicking the ElementHistory icon. Reload the page if you want to track the whole history. More information: https://github.com/mattzeunert/ElementHistory Report issues here: https://github.com/mattzeunert/ElementHistory/issues
Informações Básicas da Extensão
Nome | ElementHistory |
ID | idhhmihgigngdppfpklkdklfaikkecge |
URL Oficial | https://chromewebstore.google.com/detail/elementhistory/idhhmihgigngdppfpklkdklfaikkecge |
Descrição | See what code created or updated a DOM element |
Tamanho do Arquivo | 281 KB |
Contagem de Instalações | 47 |
Versão Atual | 1.6 |
Última Atualização | 2017-11-15 |
Data de Publicação | 2017-11-15 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | Matt Zeunert |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/mattzeunert/ElementHistory |
URL da Página de Ajuda | https://github.com/mattzeunert/ElementHistory/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ElementHistory", "description": "See what code created or updated a DOM element", "version": "1.6", "browser_action": [], "icons": { "64": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "devtools_page": "devtools.html", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "web_accessible_resources": [ "trackHistory.js" ] } |