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 - это расширение Chrome, разработанное https://blog.merlinox.com, и его основная функция - "Fix the Google Search Console Performance Report style bug on time period compare.".
Снимки экрана расширения
Скачать файл CRX расширения GSC Performance Report Style Fixer
Скачайте файлы расширений 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 } |