BugMeBack
Send bugs to the author of a web page.
什么是BugMeBack?
BugMeBack是由Nicolas Froidure开发的Chrome扩展程序,该扩展的主要功能是“Send bugs to the author of a web page.”。
扩展截图
下载BugMeBack扩展crx文件
下载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 } |