GSC Performance Report Style Fixer

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

Vad är GSC Performance Report Style Fixer?

GSC Performance Report Style Fixer är en Chrome-tillägg utvecklad av https://blog.merlinox.com, och dess huvudfunktion är "Fix the Google Search Console Performance Report style bug on time period compare.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner GSC Performance Report Style Fixer-förlängningens CRX-fil

Ladda ner GSC Performance Report Style Fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn GSC Performance Report Style Fixer GSC Performance Report Style Fixer
ID coanikjpdghncjfmkbgefonfjjamoagf
Officiell webbadress https://chromewebstore.google.com/detail/gsc-performance-report-st/coanikjpdghncjfmkbgefonfjjamoagf
Beskrivning Fix the Google Search Console Performance Report style bug on time period compare.
Filstorlek 6.52 KB
Antal Installationer 56
Aktuell Version 1.1
Senast Uppdaterad 2019-09-30
Publiceringsdatum 2019-09-30
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://blog.merlinox.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}