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…

Was ist phpMyAdmin Watch?

phpMyAdmin Watch ist eine Chrome-Erweiterung, die von tim entwickelt wurde, und ihr Hauptmerkmal ist "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…".

phpMyAdmin Watch-Erweiterungs-CRX-Datei herunterladen

Laden Sie phpMyAdmin Watch-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name phpMyAdmin Watch phpMyAdmin Watch
ID hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd
Offizielle URL https://chrome.google.com/webstore/detail/phpmyadmin-watch/hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd
Beschreibung 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…
Dateigröße 537 KB
Installationsanzahl 72
Aktuelle Version 2.0
Letztes Update 2015-11-15
Veröffentlichungsdatum 2015-11-15
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler tim
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": []
}