SocketLogs
SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。
Was ist SocketLogs?
SocketLogs ist eine Chrome-Erweiterung, die von xiaoyuit entwickelt wurde, und ihr Hauptmerkmal ist "SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。".
Erweiterungsscreenshots
SocketLogs-Erweiterungs-CRX-Datei herunterladen
Laden Sie SocketLogs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
SocketLog是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试,正在运行的API有bug,不能var_dump进行调试,因为会影响client的调用。这时候用SocketLog最好,SocketLog通过WebSocket将调试日志打印到浏览器的console中。你还可以用它来分析开源程序,分析SQL性能,结合taint分析程序漏洞。 详情查看帮助:https://github.com/xiaoyuit/SocketLogs
Grundlegende Informationen zur Erweiterung
Name | |
ID | odonpkpiphdkhhngoambjfoebppnbclc |
Offizielle URL | https://chrome.google.com/webstore/detail/socketlogs/odonpkpiphdkhhngoambjfoebppnbclc |
Beschreibung | SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。 |
Dateigröße | 64.72 KB |
Installationsanzahl | 135 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2020-01-16 |
Veröffentlichungsdatum | 2020-01-16 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | xiaoyuit |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |