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…
Cos'è phpMyAdmin Watch?
phpMyAdmin Watch è un'estensione di Chrome sviluppata da tim, e la sua funzione principale è "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…".
Scarica il file CRX dell'estensione phpMyAdmin Watch
Scarica i file di estensione phpMyAdmin Watch in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd |
URL Ufficiale | https://chrome.google.com/webstore/detail/phpmyadmin-watch/hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd |
Descrizione | 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… |
Dimensione del File | 537 KB |
Conteggio Installazioni | 72 |
Versione Corrente | 2.0 |
Ultimo Aggiornamento | 2015-11-15 |
Data di Pubblicazione | 2015-11-15 |
Valutazione | 3.00/5 Totale 1 Valutazioni |
Sviluppatore | tim |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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": [] } |