phpMyAdmin Watch
Watches phpMyAdmin for any "ALTER TABLE..." then copys that query and uploads it to a url you specify as a POST with a key of…
O que é phpMyAdmin Watch?
phpMyAdmin Watch é uma extensão do Chrome desenvolvida por tim, e sua principal característica é "Watches phpMyAdmin for any "ALTER TABLE..." then copys that query and uploads it to a url you specify as a POST with a key of…".
Baixar o arquivo CRX da Extensão phpMyAdmin Watch
Baixe arquivos de extensão phpMyAdmin Watch 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
Watches phpMyAdmin for any "ALTER TABLE..." then copys that query and uploads it to a url you specify as a POST with a key of "query" This is to help create a log of table changes for schema syncs
Informações Básicas da Extensão
Nome | |
ID | hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd |
URL Oficial | https://chrome.google.com/webstore/detail/phpmyadmin-watch/hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd |
Descrição | Watches phpMyAdmin for any "ALTER TABLE..." then copys that query and uploads it to a url you specify as a POST with a key of… |
Tamanho do Arquivo | 537 KB |
Contagem de Instalações | 72 |
Versão Atual | 2.0 |
Última Atualização | 2015-11-15 |
Data de Publicação | 2015-11-15 |
Classificação | 3.00/5 Total de 1 Avaliações |
Desenvolvedor | tim |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "phpMyAdmin Watch", "minimum_chrome_version": "24.0.1307.0", "version": "2.0", "options_page": "options.html", "icons": { "16": "icon_16.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "knockout-3.3.0.js", "jquery.min.js", "phpmyadminwatch.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "tabs", "https:\/\/*\/*", "http:\/\/*\/*" ], "web_accessible_resources": [] } |