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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |