webcompat.com reporter

Report website compatibility issues at webcompat.com

Co je webcompat.com reporter?

webcompat.com reporter je rozšíření Chrome vyvinuté https://webcompat.com, a jeho hlavní funkcí je „Report website compatibility issues at webcompat.com“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření webcompat.com reporter

Stáhněte si soubory rozšíření webcompat.com reporter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název webcompat.com reporter webcompat.com reporter
ID ffnnhckjcpbbjlmgfjigknkoffakclol
Oficiální URL https://chromewebstore.google.com/detail/webcompatcom-reporter/ffnnhckjcpbbjlmgfjigknkoffakclol
Popis Report website compatibility issues at webcompat.com
Velikost souboru 13.64 KB
Počet instalací 125
Aktuální Verze 0.6.0
Poslední Aktualizace 2020-02-23
Datum Vydání 2020-02-22
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář https://webcompat.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://webcompat.com
URL Stránky Nápovědy https://github.com/webcompat/webcompat-reporter-extensions/issues
URL Stránky Zásad Ochrany Soukromí https://webcompat.com/privacy
Podporované Jazyky 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"
}