GSC Performance Report Style Fixer

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

GSC Performance Report Style Fixerとは何ですか?

GSC Performance Report Style Fixerはhttps://blog.merlinox.comによって開発されたChromeの拡張機能で、その主な機能は「Fix the Google Search Console Performance Report style bug on time period compare.」です。

拡張機能のスクリーンショット

screenshot
screenshot

GSC Performance Report Style Fixer拡張機能のCRXファイルをダウンロード

GSC Performance Report Style Fixer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 GSC Performance Report Style Fixer GSC Performance Report Style Fixer
ID coanikjpdghncjfmkbgefonfjjamoagf
公式URL https://chromewebstore.google.com/detail/gsc-performance-report-st/coanikjpdghncjfmkbgefonfjjamoagf
説明 Fix the Google Search Console Performance Report style bug on time period compare.
ファイルサイズ 6.52 KB
インストール数 56
現在のバージョン 1.1
最終更新日 2019-09-30
公開日 2019-09-30
評価 5.00/5 合計 2 レビュー
開発者 https://blog.merlinox.com
Eメール [email protected]
支払い方法 free
対応言語 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
}