BugMeBack
Send bugs to the author of a web page.
Τι είναι το BugMeBack;
Το BugMeBack είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Nicolas Froidure, και η κύρια λειτουργία του είναι "Send bugs to the author of a web page.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης BugMeBack
Λήψη αρχείων επέκτασης BugMeBack σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | BugMeBack |
ID | hgmagcomobmjhaomdoihiggpdekaehmg |
Επίσημο URL | https://chromewebstore.google.com/detail/bugmeback/hgmagcomobmjhaomdoihiggpdekaehmg |
Περιγραφή | Send bugs to the author of a web page. |
Μέγεθος Αρχείου | 42.45 KB |
Αριθμός Εγκαταστάσεων | 40 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2014-12-23 |
Ημερομηνία Δημοσίευσης | 2014-12-23 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Nicolas Froidure |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/nfroidure/BugMeBack |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/nfroidure/BugMeBack/issues |
Υποστηριζόμενες Γλώσσες | 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 } |