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…
Hvad er phpMyAdmin Watch?
phpMyAdmin Watch er en Chrome-udvidelse udviklet af tim, og dens hovedfunktion er "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…".
Download phpMyAdmin Watch-udvidelses-CRX-fil
Download phpMyAdmin Watch-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd |
| Officiel URL | https://chrome.google.com/webstore/detail/phpmyadmin-watch/hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd |
| Beskrivelse | 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… |
| Filstørrelse | 537 KB |
| Antal Installationer | 72 |
| Nuværende Version | 2.0 |
| Senest Opdateret | 2015-11-15 |
| Udgivelsesdato | 2015-11-15 |
| Bedømmelse | 3.00/5 Samlet 1 Bedømmelser |
| Udvikler | tim |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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": []
} | |