BugMeBack
Send bugs to the author of a web page.
Qu'est-ce que BugMeBack ?
BugMeBack est une extension Chrome développée par Nicolas Froidure, et sa fonction principale est "Send bugs to the author of a web page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension BugMeBack
Téléchargez les fichiers d'extension BugMeBack 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
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.
Informations de Base sur l'Extension
Nom | BugMeBack |
ID | hgmagcomobmjhaomdoihiggpdekaehmg |
URL Officiel | https://chromewebstore.google.com/detail/bugmeback/hgmagcomobmjhaomdoihiggpdekaehmg |
Description | Send bugs to the author of a web page. |
Taille du Fichier | 42.45 KB |
Nombre d'Installations | 40 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2014-12-23 |
Date de Publication | 2014-12-23 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Nicolas Froidure |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/nfroidure/BugMeBack |
URL de la Page d'Aide | https://github.com/nfroidure/BugMeBack/issues |
Langues Prises en Charge | 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 } |