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.”。
扩展截图
下载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 |
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 |
电子邮箱 | [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 } |