ServerLog
Display server side logs in Chrome dev tools and browser Console.
¿Qué es ServerLog?
ServerLog es una extensión de Chrome desarrollada por Sky.Sun, y su función principal es "Display server side logs in Chrome dev tools and browser Console.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ServerLog
Descarga archivos de extensión ServerLog en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Supported extensions for ServerLog library (https://github.com/eshengsky/ServerLog), used to view server side logs in Chrome dev tools and Console panel. Functional features: Good log viewing experience. Only the logs associated with you will be displayed, and the logs generated by others will not be exported to your dev tools. You can now view both the client and server side logs in the browser Console.
Información Básica de la Extensión
Nombre | |
ID | ghmhlknahaejhdlobgpaoocmjlhgmcci |
URL Oficial | https://chrome.google.com/webstore/detail/serverlog/ghmhlknahaejhdlobgpaoocmjlhgmcci |
Descripción | Display server side logs in Chrome dev tools and browser Console. |
Tamaño del Archivo | 2.45 MB |
Cantidad de Instalaciones | 29 |
Versión Actual | 2.2.1 |
Última Actualización | 2019-10-09 |
Fecha de Publicación | 2019-10-08 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Sky.Sun |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/eshengsky/ServerLog/tree/master/chrome-extension-server-log |
URL de la Página de Ayuda | https://github.com/eshengsky/ServerLog/issues |
Idiomas Soportados | en-US,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ServerLog", "description": "__MSG_description__", "version": "2.2.1", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "serverlog.js" ], "run_at": "document_start" } ], "icons": { "19": "icon.png", "38": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "Server Log", "default_popup": "popup.html" }, "permissions": [ "storage", "tabs", "webRequest", "webRequestBlocking", "http:\/\/*\/", "https:\/\/*\/" ], "devtools_page": "devtools.html", "default_locale": "en_US", "manifest_version": 2 } |