GSC Performance Report Style Fixer
Fix the Google Search Console Performance Report style bug on time period compare.
O que é GSC Performance Report Style Fixer?
GSC Performance Report Style Fixer é uma extensão do Chrome desenvolvida por https://blog.merlinox.com, e sua principal característica é "Fix the Google Search Console Performance Report style bug on time period compare.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GSC Performance Report Style Fixer
Baixe arquivos de extensão GSC Performance Report Style Fixer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | GSC Performance Report Style Fixer |
ID | coanikjpdghncjfmkbgefonfjjamoagf |
URL Oficial | https://chromewebstore.google.com/detail/gsc-performance-report-st/coanikjpdghncjfmkbgefonfjjamoagf |
Descrição | Fix the Google Search Console Performance Report style bug on time period compare. |
Tamanho do Arquivo | 6.52 KB |
Contagem de Instalações | 56 |
Versão Atual | 1.1 |
Última Atualização | 2019-09-30 |
Data de Publicação | 2019-09-30 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | https://blog.merlinox.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } |