Web Debug Field
Add debug hidden field into forms
什麼是Web Debug Field?
Web Debug Field是由Allen Chak開發的Chrome擴展程式,該擴展的主要功能是“Add debug hidden field into forms”。
擴展截圖
下載Web Debug Field擴展crx文件
下載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 |
| 官方網址 | 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:\/\/*\/*"
]
} | |