BugMeBack

Send bugs to the author of a web page.

Was ist BugMeBack?

BugMeBack ist eine Chrome-Erweiterung, die von Nicolas Froidure entwickelt wurde, und ihr Hauptmerkmal ist "Send bugs to the author of a web page.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

BugMeBack-Erweiterungs-CRX-Datei herunterladen

Laden Sie BugMeBack-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name BugMeBack BugMeBack
ID hgmagcomobmjhaomdoihiggpdekaehmg
Offizielle URL https://chromewebstore.google.com/detail/bugmeback/hgmagcomobmjhaomdoihiggpdekaehmg
Beschreibung Send bugs to the author of a web page.
Dateigröße 42.45 KB
Installationsanzahl 40
Aktuelle Version 1.0
Letztes Update 2014-12-23
Veröffentlichungsdatum 2014-12-23
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Nicolas Froidure
Zahlungsart free
Erweiterungswebsite https://github.com/nfroidure/BugMeBack
Hilfeseite URL https://github.com/nfroidure/BugMeBack/issues
Unterstützte Sprachen 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
}