SocketLogs
SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。
Cos'è SocketLogs?
SocketLogs è un'estensione di Chrome sviluppata da xiaoyuit, e la sua funzione principale è "SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SocketLogs
Scarica i file di estensione SocketLogs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
SocketLog是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试,正在运行的API有bug,不能var_dump进行调试,因为会影响client的调用。这时候用SocketLog最好,SocketLog通过WebSocket将调试日志打印到浏览器的console中。你还可以用它来分析开源程序,分析SQL性能,结合taint分析程序漏洞。 详情查看帮助:https://github.com/xiaoyuit/SocketLogs
Informazioni di Base sull'Estensione
Nome | |
ID | odonpkpiphdkhhngoambjfoebppnbclc |
URL Ufficiale | https://chrome.google.com/webstore/detail/socketlogs/odonpkpiphdkhhngoambjfoebppnbclc |
Descrizione | SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。 |
Dimensione del File | 64.72 KB |
Conteggio Installazioni | 135 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2020-01-16 |
Data di Pubblicazione | 2020-01-16 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | xiaoyuit |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |