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…

Qu'est-ce que phpMyAdmin Watch ?

phpMyAdmin Watch est une extension Chrome développée par tim, et sa fonction principale est "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…".

Télécharger le fichier CRX de l'extension phpMyAdmin Watch

Téléchargez les fichiers d'extension phpMyAdmin Watch au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom phpMyAdmin Watch phpMyAdmin Watch
ID hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd
URL Officiel https://chrome.google.com/webstore/detail/phpmyadmin-watch/hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd
Description 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…
Taille du Fichier 537 KB
Nombre d'Installations 72
Version Actuelle 2.0
Dernière Mise à Jour 2015-11-15
Date de Publication 2015-11-15
Évaluation 3.00/5 Total 1 Évaluations
Développeur tim
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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": []
}