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. 擴展基本資訊
| 名稱 | |
| ID | coanikjpdghncjfmkbgefonfjjamoagf |
| 官方網址 | 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
} | |