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是由tim开发的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…”。
下载phpMyAdmin Watch扩展crx文件
下载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": [] } |