ServerLog
Display server side logs in Chrome dev tools and browser Console.
O que é ServerLog?
ServerLog é uma extensão do Chrome desenvolvida por Sky.Sun, e sua principal característica é "Display server side logs in Chrome dev tools and browser Console.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ServerLog
Baixe arquivos de extensão ServerLog no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | ghmhlknahaejhdlobgpaoocmjlhgmcci |
URL Oficial | https://chrome.google.com/webstore/detail/serverlog/ghmhlknahaejhdlobgpaoocmjlhgmcci |
Descrição | Display server side logs in Chrome dev tools and browser Console. |
Tamanho do Arquivo | 2.45 MB |
Contagem de Instalações | 29 |
Versão Atual | 2.2.1 |
Última Atualização | 2019-10-09 |
Data de Publicação | 2019-10-08 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Sky.Sun |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/eshengsky/ServerLog/tree/master/chrome-extension-server-log |
URL da Página de Ajuda | https://github.com/eshengsky/ServerLog/issues |
Idiomas Suportados | 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 } |