BugMeBack

Send bugs to the author of a web page.

Hvad er BugMeBack?

BugMeBack er en Chrome-udvidelse udviklet af Nicolas Froidure, og dens hovedfunktion er "Send bugs to the author of a web page.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download BugMeBack-udvidelses-CRX-fil

Download BugMeBack-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn BugMeBack BugMeBack
ID hgmagcomobmjhaomdoihiggpdekaehmg
Officiel URL https://chromewebstore.google.com/detail/bugmeback/hgmagcomobmjhaomdoihiggpdekaehmg
Beskrivelse Send bugs to the author of a web page.
Filstørrelse 42.45 KB
Antal Installationer 40
Nuværende Version 1.0
Senest Opdateret 2014-12-23
Udgivelsesdato 2014-12-23
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Nicolas Froidure
Betalingsmetode free
Udvidelseswebsted https://github.com/nfroidure/BugMeBack
Hjælpeside-URL https://github.com/nfroidure/BugMeBack/issues
Understøttede Sprog 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
}