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 } |