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…

ما هو phpMyAdmin Watch؟

phpMyAdmin Watch هو إضافة Chrome تم تطويرها بواسطة tim، والميزة الرئيسية لها هي "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…".

تحميل ملف CRX للإضافة phpMyAdmin Watch

قم بتنزيل ملفات الامتداد phpMyAdmin Watch بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم phpMyAdmin Watch phpMyAdmin Watch
ID hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd
عنوان URL الرسمي https://chrome.google.com/webstore/detail/phpmyadmin-watch/hjhnhkghcdpdeoecbfnjmpgjcnlmhlgd
الوصف 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…
حجم الملف 537 KB
عدد التثبيتات 72
النسخة الحالية 2.0
آخر تحديث 2015-11-15
تاريخ النشر 2015-11-15
تقييم 3.00/5 مجموع تقييمات 1
المطور tim
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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": []
}