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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
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": [] } |