Web Debug Field
Add debug hidden field into forms
Web Debug Fieldคืออะไร?
Web Debug Field เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Allen Chak และคุณลักษณะหลักของมันคือ "Add debug hidden field into forms"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Debug Field
ดาวน์โหลดไฟล์ส่วนขยาย Web Debug Field ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adding any custom hidden field on-the-fly in any forms at specify domains. Features: 1) Domain & subdomain specify 2) Add any custom field with value into forms 3) Add domain with simple click in toolbar 4) Computer specify, all data will not upload to cloud. 5) Can adopt to any web language, such as PHP, ASP, Servlet, ColdFusion, .NET, etc. 6) Can adopt to any framework, such as: CodeIgniter, CakePHP, Zend Framework, etc. Why install it? 1) Web application do not need any changes for developer debugging, even in production enviroment. 2) Simple changes for applying this feature to help you to develop. (PHP: if( isset($_GET['debug']) ){ var_dump($data); }) Change Log: 1.1 -------------- 1) fixed the option link in table
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | cgdddofgmhjammagmdnfjnanfjfblkbm |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/web-debug-field/cgdddofgmhjammagmdnfjnanfjfblkbm |
คำอธิบาย | Add debug hidden field into forms |
ขนาดไฟล์ | 141 KB |
จำนวนการติดตั้ง | 71 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2013-07-26 |
วันที่เผยแพร่ | 2013-07-26 |
คะแนน | 2.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Allen Chak |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Web Debug Field", "version": "1.1", "manifest_version": 2, "description": "Add debug hidden field into forms", "browser_action": { "default_icon": { "16": "images\/icon16.png", "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Web Debug Field", "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery-1.9.1.js", "js\/webdb.js", "js\/main.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/webdb.js", "js\/background.js" ] }, "options_page": "options.html", "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ] } |