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…

Wat is phpMyAdmin Watch?

phpMyAdmin Watch is een Chrome-extensie ontwikkeld door tim, en de belangrijkste functie is "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 het CRX-bestand van de extensie phpMyAdmin Watch

Download phpMyAdmin Watch-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam phpMyAdmin Watch phpMyAdmin Watch
ID hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd
Officiële URL https://chrome.google.com/webstore/detail/phpmyadmin-watch/hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd
Beschrijving 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…
Bestandsgrootte 537 KB
Aantal Installaties 72
Huidige Versie 2.0
Laatst Bijgewerkt 2015-11-15
Publicatiedatum 2015-11-15
Beoordeling 3.00/5 Totaal 1 Beoordelingen
Ontwikkelaar tim
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": []
}