GSC Performance Report Style Fixer

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

Apa itu GSC Performance Report Style Fixer?

GSC Performance Report Style Fixer adalah ekstensi Chrome yang dikembangkan oleh https://blog.merlinox.com, dan fitur utamanya adalah "Fix the Google Search Console Performance Report style bug on time period compare.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi GSC Performance Report Style Fixer

Unduh file ekstensi GSC Performance Report Style Fixer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama GSC Performance Report Style Fixer GSC Performance Report Style Fixer
ID coanikjpdghncjfmkbgefonfjjamoagf
URL Resmi https://chromewebstore.google.com/detail/gsc-performance-report-st/coanikjpdghncjfmkbgefonfjjamoagf
Deskripsi Fix the Google Search Console Performance Report style bug on time period compare.
Ukuran File 6.52 KB
Jumlah Instalasi 56
Versi Saat Ini 1.1
Terakhir Diperbarui 2019-09-30
Tanggal Publikasi 2019-09-30
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://blog.merlinox.com
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
}