BugMeBack
Send bugs to the author of a web page.
BugMeBack là gì?
BugMeBack là một tiện ích mở rộng Chrome được phát triển bởi Nicolas Froidure, và tính năng chính của nó là "Send bugs to the author of a web page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng BugMeBack
Tải xuống các tệp mở rộng BugMeBack dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | BugMeBack |
ID | hgmagcomobmjhaomdoihiggpdekaehmg |
URL Chính Thức | https://chromewebstore.google.com/detail/bugmeback/hgmagcomobmjhaomdoihiggpdekaehmg |
Mô tả | Send bugs to the author of a web page. |
Kích Thước Tệp | 42.45 KB |
Số Lần Cài Đặt | 40 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-12-23 |
Ngày Phát Hành | 2014-12-23 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Nicolas Froidure |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/nfroidure/BugMeBack |
URL Trang Trợ Giúp | https://github.com/nfroidure/BugMeBack/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } |