GSC Performance Report Style Fixer

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

Was ist GSC Performance Report Style Fixer?

GSC Performance Report Style Fixer ist eine Chrome-Erweiterung, die von https://blog.merlinox.com entwickelt wurde, und ihr Hauptmerkmal ist "Fix the Google Search Console Performance Report style bug on time period compare.".

Erweiterungsscreenshots

screenshot
screenshot

GSC Performance Report Style Fixer-Erweiterungs-CRX-Datei herunterladen

Laden Sie GSC Performance Report Style Fixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name GSC Performance Report Style Fixer GSC Performance Report Style Fixer
ID coanikjpdghncjfmkbgefonfjjamoagf
Offizielle URL https://chromewebstore.google.com/detail/gsc-performance-report-st/coanikjpdghncjfmkbgefonfjjamoagf
Beschreibung Fix the Google Search Console Performance Report style bug on time period compare.
Dateigröße 6.52 KB
Installationsanzahl 56
Aktuelle Version 1.1
Letztes Update 2019-09-30
Veröffentlichungsdatum 2019-09-30
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://blog.merlinox.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}