BugMeBack

Send bugs to the author of a web page.

Cos'è BugMeBack?

BugMeBack è un'estensione di Chrome sviluppata da Nicolas Froidure, e la sua funzione principale è "Send bugs to the author of a web page.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione BugMeBack

Scarica i file di estensione BugMeBack in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome BugMeBack BugMeBack
ID hgmagcomobmjhaomdoihiggpdekaehmg
URL Ufficiale https://chromewebstore.google.com/detail/bugmeback/hgmagcomobmjhaomdoihiggpdekaehmg
Descrizione Send bugs to the author of a web page.
Dimensione del File 42.45 KB
Conteggio Installazioni 40
Versione Corrente 1.0
Ultimo Aggiornamento 2014-12-23
Data di Pubblicazione 2014-12-23
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Nicolas Froidure
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nfroidure/BugMeBack
URL della Pagina di Aiuto https://github.com/nfroidure/BugMeBack/issues
Lingue Supportate 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
}