webcompat.com reporter

Report website compatibility issues at webcompat.com

webcompat.com reporter란 무엇입니까?

webcompat.com reporter은(는) https://webcompat.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Report website compatibility issues at webcompat.com"입니다.

확장 프로그램 스크린샷

screenshot

webcompat.com reporter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The webcompat.com reporter extension adds a button which allows users to report issues with any site on the web. A screenshot will be added to the bug report, but you have the option to remove it before submitting a bug.

Sometimes, sites have bugs or policies that prevent them from working well in every browser. The community at webcompat.com works to help web developers and site owners identify and fix such issues.

If something appears broken, but works in another browser, or if a site or app insists you install another browser this is likely a web compatibility issue that you can report with this add-on.                    

확장 프로그램 기본 정보

이름 webcompat.com reporter webcompat.com reporter
ID ffnnhckjcpbbjlmgfjigknkoffakclol
공식 URL https://chromewebstore.google.com/detail/webcompatcom-reporter/ffnnhckjcpbbjlmgfjigknkoffakclol
설명 Report website compatibility issues at webcompat.com
파일 크기 13.64 KB
설치 횟수 125
현재 버전 0.6.0
최근 업데이트 2020-02-23
출시 날짜 2020-02-22
평점 5.00/5 총 3 개의 평점
개발자 https://webcompat.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://webcompat.com
도움말 페이지 URL https://github.com/webcompat/webcompat-reporter-extensions/issues
개인정보 보호 정책 페이지 URL https://webcompat.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "webcompat.com reporter",
    "description": "Report website compatibility issues at webcompat.com",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/webcompat.com\/"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "contextMenus",
        "https:\/\/webcompat.com\/",
        ""
    ],
    "icons": {
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon32.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "64": "icon64.png",
            "128": "icon128.png"
        },
        "default_title": "Report Site Issue"
    },
    "default_locale": "en",
    "version": "0.6.0"
}