Exception beautifier
A browser extension that will help you beautify the annoying exceptions
¿Qué es Exception beautifier?
Exception beautifier es una extensión de Chrome desarrollada por v.gagaleski, y su función principal es "A browser extension that will help you beautify the annoying exceptions".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Exception beautifier
Descarga archivos de extensión Exception beautifier 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
A browser extension that will help you beautify the stack-trace of the annoying exceptions (C# & .NET). The purpose of the extension is to provide fast access for developers and especially testers to place in which they can drop a non structured string stack-trace and get a structured output. The visibility that the exceptionBeautifier provides enables fast recognition of the stack-trace and analyzing the issue straight from the actual place of the "crime" - the browser. The extension has few features making it interesting part of every tester tool-set. The user can automatically get copy of the exception output to clipboard or clear the input fields. One of the cool features also is the dark theme, allowing every user to completely align the extension appearance to their personal preferences.
Información Básica de la Extensión
Nombre | Exception beautifier |
ID | lnjihceobbbfgbnoghfeeofplkdelion |
URL Oficial | https://chromewebstore.google.com/detail/exception-beautifier/lnjihceobbbfgbnoghfeeofplkdelion |
Descripción | A browser extension that will help you beautify the annoying exceptions |
Tamaño del Archivo | 50.8 KB |
Cantidad de Instalaciones | 19 |
Versión Actual | 1.0.0 |
Última Actualización | 2020-06-12 |
Fecha de Publicación | 2020-06-11 |
Desarrollador | v.gagaleski |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/vgagaleski/exceptionBeautifier |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Exception beautifier", "version": "1.0.0", "description": "A browser extension that will help you beautify the annoying exceptions", "permissions": [ "storage" ], "browser_action": { "default_title": "Exception beautifier", "default_icon": "\/images\/logo_2.png", "default_popup": "popup.html" }, "icons": { "16": "\/images\/icon16.png", "48": "\/images\/icon48.png", "128": "\/images\/icon128.png" }, "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |