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 |
| 官方網址 | 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": []
} | |