GSC crawl stats downloader
a helper to efficiently download crawl data from GSC
Что такое GSC crawl stats downloader?
GSC crawl stats downloader - это расширение Chrome, разработанное https://valentin.app, и его основная функция - "a helper to efficiently download crawl data from GSC".
Снимки экрана расширения
Скачать файл CRX расширения GSC crawl stats downloader
Скачайте файлы расширений GSC crawl stats downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
instead of downloading 42 separate CSV files (by response, file type, purpose, Googlebot type and summary) this allows you to download everything with one click (and you can decide wether you want to only use the extension or if you want to backup the original CSVs as well) Update v1.5: added backup/restore under options.html Update v1.1: some UX/UI bugfixes
Основная информация о расширении
Название | GSC crawl stats downloader |
ID | bpekjbefojkhefgcfhfeohjfncbpioam |
Официальный URL | https://chromewebstore.google.com/detail/gsc-crawl-stats-downloade/bpekjbefojkhefgcfhfeohjfncbpioam |
Описание | a helper to efficiently download crawl data from GSC |
Размер файла | 1.78 MB |
Количество установок | 1,928 |
Текущая Версия | 1.5 |
Последнее Обновление | 2023-08-08 |
Дата публикации | 2022-04-07 |
Рейтинг | 4.67/5 Всего 3 оценок |
Разработчик | https://valentin.app |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://valentin.app/ |
URL страницы помощи | https://valentin.app/gscDownloader.html |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "options_page": "options.html", "permissions": [ "tabs", "downloads", "storage", "unlimitedStorage" ], "host_permissions": [ "https:\/\/search.google.com\/" ], "web_accessible_resources": [ { "resources": [ "js\/script.js" ], "matches": [ "https:\/\/search.google.com\/*" ] } ], "background": { "service_worker": "js\/background.js" }, "action": { "default_title": "GSC crawl stats downloader" }, "icons": { "16": "icons\/icon16.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "js": [ "js\/content.js" ], "matches": [ "https:\/\/search.google.com\/*" ], "run_at": "document_end" } ], "description": "a helper to efficiently download crawl data from GSC", "manifest_version": 3, "name": "GSC crawl stats downloader", "homepage_url": "https:\/\/valentin.app\/gscDownloader.html", "version": "1.5" } |