GSC Performance Report Style Fixer
Fix the Google Search Console Performance Report style bug on time period compare.
¿Qué es GSC Performance Report Style Fixer?
GSC Performance Report Style Fixer es una extensión de Chrome desarrollada por https://blog.merlinox.com, y su función principal es "Fix the Google Search Console Performance Report style bug on time period compare.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GSC Performance Report Style Fixer
Descarga archivos de extensión GSC Performance Report Style Fixer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | GSC Performance Report Style Fixer |
ID | coanikjpdghncjfmkbgefonfjjamoagf |
URL Oficial | https://chromewebstore.google.com/detail/gsc-performance-report-st/coanikjpdghncjfmkbgefonfjjamoagf |
Descripción | Fix the Google Search Console Performance Report style bug on time period compare. |
Tamaño del Archivo | 6.52 KB |
Cantidad de Instalaciones | 56 |
Versión Actual | 1.1 |
Última Actualización | 2019-09-30 |
Fecha de Publicación | 2019-09-30 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | https://blog.merlinox.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } |