BugMeBack

Send bugs to the author of a web page.

什麼是BugMeBack?

BugMeBack是由Nicolas Froidure開發的Chrome擴展程式,該擴展的主要功能是“Send bugs to the author of a web page.”。

擴展截圖

screenshot
screenshot
screenshot

下載BugMeBack擴展crx文件

下載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 BugMeBack
ID hgmagcomobmjhaomdoihiggpdekaehmg
官方網址 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
}