GSC Performance Report Style Fixer

Fix the Google Search Console Performance Report style bug on time period compare.

Co je GSC Performance Report Style Fixer?

GSC Performance Report Style Fixer je rozšíření Chrome vyvinuté https://blog.merlinox.com, a jeho hlavní funkcí je „Fix the Google Search Console Performance Report style bug on time period compare.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření GSC Performance Report Style Fixer

Stáhněte si soubory rozšíření GSC Performance Report Style Fixer 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 new Google Search Console has a bug on the Performance Report.
When you show too many columns, GSC trim them.
With this extension, you may fix the CSS and see all the columns without a click.
To force the restyle, please click on the extension button.                    

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

Název GSC Performance Report Style Fixer GSC Performance Report Style Fixer
ID coanikjpdghncjfmkbgefonfjjamoagf
Oficiální URL https://chromewebstore.google.com/detail/gsc-performance-report-st/coanikjpdghncjfmkbgefonfjjamoagf
Popis Fix the Google Search Console Performance Report style bug on time period compare.
Velikost souboru 6.52 KB
Počet instalací 56
Aktuální Verze 1.1
Poslední Aktualizace 2019-09-30
Datum Vydání 2019-09-30
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://blog.merlinox.com
E-mail [email protected]
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GSC Performance Report Style Fixer",
    "description": "Fix the Google Search Console Performance Report style bug on time period compare. ",
    "author": "Merlinox",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "version": "1.1",
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/search.google.com\/search-console*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "gsc-fixer.png",
        "default_title": "Fix the GSC performance report style bug"
    },
    "manifest_version": 2
}