SocketLogs
SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。
Qu'est-ce que SocketLogs ?
SocketLogs est une extension Chrome développée par xiaoyuit, et sa fonction principale est "SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SocketLogs
Téléchargez les fichiers d'extension SocketLogs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
SocketLog是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试,正在运行的API有bug,不能var_dump进行调试,因为会影响client的调用。这时候用SocketLog最好,SocketLog通过WebSocket将调试日志打印到浏览器的console中。你还可以用它来分析开源程序,分析SQL性能,结合taint分析程序漏洞。 详情查看帮助:https://github.com/xiaoyuit/SocketLogs
Informations de Base sur l'Extension
Nom | |
ID | odonpkpiphdkhhngoambjfoebppnbclc |
URL Officiel | https://chrome.google.com/webstore/detail/socketlogs/odonpkpiphdkhhngoambjfoebppnbclc |
Description | SocketLogs是FirePHP和ChromePHP的替代者,不仅能做ajax调试,还能做API调试。 |
Taille du Fichier | 64.72 KB |
Nombre d'Installations | 135 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2020-01-16 |
Date de Publication | 2020-01-16 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | xiaoyuit |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |