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…

Vad är phpMyAdmin Watch?

phpMyAdmin Watch är en Chrome-tillägg utvecklad av tim, och dess huvudfunktion är "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…".

Ladda ner phpMyAdmin Watch-förlängningens CRX-fil

Ladda ner phpMyAdmin Watch-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn phpMyAdmin Watch phpMyAdmin Watch
ID hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd
Officiell webbadress https://chrome.google.com/webstore/detail/phpmyadmin-watch/hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd
Beskrivning 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…
Filstorlek 537 KB
Antal Installationer 72
Aktuell Version 2.0
Senast Uppdaterad 2015-11-15
Publiceringsdatum 2015-11-15
Betyg 3.00/5 Totalt 1 Betyg
Utvecklare tim
E-post [email protected]
Betalningssätt free
Stödda Språk 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": []
}