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": [] } |