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