DBG debugger toolbar
PHP Debugging and profiling extension
What is DBG debugger toolbar?
DBG debugger toolbar is a Chrome extension developed by https://www.nusphere.com, and its main feature is "PHP Debugging and profiling extension".
Extension Screenshots
Download DBG debugger toolbar Extension CRX File
Download DBG debugger toolbar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
PHP Debugging and profiling in one click
Extension Basic Information
Name | DBG debugger toolbar |
ID | jpfjdjkohmopcgecijakgemceodpjpdp |
Official URL | https://chromewebstore.google.com/detail/dbg-debugger-toolbar/jpfjdjkohmopcgecijakgemceodpjpdp |
Description | PHP Debugging and profiling extension |
File Size | 80.62 KB |
Installation Count | 663 |
Current Version | 1.0.0.0 |
Last Updated | 2013-07-10 |
Publish Date | 2013-07-10 |
Developer | https://www.nusphere.com |
Payment Type | free |
Supported Languages | 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" ] } |