SocketLogs
SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。
What is SocketLogs?
SocketLogs is a Chrome extension developed by xiaoyuit, and its main feature is "SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。".
Extension Screenshots
Download SocketLogs Extension CRX File
Download SocketLogs 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
SocketLog是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试,正在运行的API有bug,不能var_dump进行调试,因为会影响client的调用。这时候用SocketLog最好,SocketLog通过WebSocket将调试日志打印到浏览器的console中。你还可以用它来分析开源程序,分析SQL性能,结合taint分析程序漏洞。 详情查看帮助:https://github.com/xiaoyuit/SocketLogs
Extension Basic Information
Name | |
ID | odonpkpiphdkhhngoambjfoebppnbclc |
Official URL | https://chrome.google.com/webstore/detail/socketlogs/odonpkpiphdkhhngoambjfoebppnbclc |
Description | SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。 |
File Size | 64.72 KB |
Installation Count | 135 |
Current Version | 1.0.0 |
Last Updated | 2020-01-16 |
Publish Date | 2020-01-16 |
Rating | 5.00/5 Total 1 Ratings |
Developer | xiaoyuit |
[email protected] | |
Payment Type | free |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SocketLogs", "short_name": "SocketLogs", "description": "SocketLogs\u662fFirePHP\u548cChromePHP\u7684\u66ff\u4ee3\u8005\uff0c\u4e0d\u4ec5\u80fd\u505aajax\u8c03\u8bd5\uff0c\u8fd8\u80fd\u505aAPI\u8c03\u8bd5\u3002", "version": "1.0.0", "version_name": "1.0.0", "permissions": [ "webRequest", "webRequestBlocking", "tabs", "notifications", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "js": [ "js\/log.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" }, { "js": [ "js\/evn.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "all_frames": true } ], "background": { "scripts": [ "js\/background.js" ] }, "options_page": "options.html", "icons": { "16": "images\/logo_16.png", "64": "images\/logo_64.png", "128": "images\/logo_128.png" }, "browser_action": { "default_icon": { "16": "images\/logo_16.png", "64": "images\/logo_64.png", "128": "images\/logo_128.png" }, "default_popup": "popup.html" } } |