BugMeBack
Send bugs to the author of a web page.
BugMeBack क्या है?
BugMeBack Nicolas Froidure द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send bugs to the author of a web page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में BugMeBack एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |