BugMeBack
Send bugs to the author of a web page.
¿Qué es BugMeBack?
BugMeBack es una extensión de Chrome desarrollada por Nicolas Froidure, y su función principal es "Send bugs to the author of a web page.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión BugMeBack
Descarga archivos de extensión BugMeBack 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
BugMeBack is a free GNU/GPL Google Chrome extension allowing your users to report bugs with a formular that : - asks all the elements to reproduce and understand the bug - gives the user agent, screen size and url of the bug - gives the console contents (console.log calls and javascript errors) - and takes a screenshot of the page Finally, the user can send the bug : - by copy/pasting the bug report in a mail - automatically with a POST request containing a JSON report when the page contains this kind of meta tag : Hope you'll find it useful, feel free to commit (especially if you want to translate it in your language), suggest improvement or claim issues.
Información Básica de la Extensión
Nombre | BugMeBack |
ID | hgmagcomobmjhaomdoihiggpdekaehmg |
URL Oficial | https://chromewebstore.google.com/detail/bugmeback/hgmagcomobmjhaomdoihiggpdekaehmg |
Descripción | Send bugs to the author of a web page. |
Tamaño del Archivo | 42.45 KB |
Cantidad de Instalaciones | 40 |
Versión Actual | 1.0 |
Última Actualización | 2014-12-23 |
Fecha de Publicación | 2014-12-23 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Nicolas Froidure |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/nfroidure/BugMeBack |
URL de la Página de Ayuda | https://github.com/nfroidure/BugMeBack/issues |
Idiomas Soportados | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "BugMeBack", "description": "__MSG_description__", "version": "1.0", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_icon": "icon-32.png", "default_title": "__MSG_tooltip__", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "console_infos.js" ], "run_at": "document_start" } ], "default_locale": "en", "manifest_version": 2 } |