DBG debugger toolbar
PHP Debugging and profiling extension
什麼是DBG debugger toolbar?
DBG debugger toolbar是由https://www.nusphere.com開發的Chrome擴展程式,該擴展的主要功能是“PHP Debugging and profiling extension”。
擴展截圖
下載DBG debugger toolbar擴展crx文件
下載DBG debugger toolbar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
PHP Debugging and profiling in one click 擴展基本資訊
| 名稱 | |
| ID | jpfjdjkohmopcgecijakgemceodpjpdp |
| 官方網址 | https://chromewebstore.google.com/detail/dbg-debugger-toolbar/jpfjdjkohmopcgecijakgemceodpjpdp |
| 簡介 | PHP Debugging and profiling extension |
| 檔案大小 | 80.62 KB |
| 安裝次數 | 663 |
| 目前版本 | 1.0.0.0 |
| 更新時間 | 2013-07-10 |
| 上架時間 | 2013-07-10 |
| 開發者 | https://www.nusphere.com |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "DBG debugger toolbar",
"version": "1.0.0.0",
"description": "PHP Debugging and profiling extension",
"background": {
"scripts": [
"background.js"
]
},
"options_page": "options.html",
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"icons": {
"128": "images\/icon-128.png",
"48": "images\/icon-48.png"
},
"page_action": {
"default_icon": "images\/bug-gray.png",
"default_title": "Debugging & profiling disabled",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"background"
]
} | |