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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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
}