GSC crawl stats downloader
a helper to efficiently download crawl data from GSC
Was ist GSC crawl stats downloader?
GSC crawl stats downloader ist eine Chrome-Erweiterung, die von https://valentin.app entwickelt wurde, und ihr Hauptmerkmal ist "a helper to efficiently download crawl data from GSC".
Erweiterungsscreenshots
GSC crawl stats downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie GSC crawl stats downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | GSC crawl stats downloader |
ID | bpekjbefojkhefgcfhfeohjfncbpioam |
Offizielle URL | https://chromewebstore.google.com/detail/gsc-crawl-stats-downloade/bpekjbefojkhefgcfhfeohjfncbpioam |
Beschreibung | a helper to efficiently download crawl data from GSC |
Dateigröße | 1.78 MB |
Installationsanzahl | 1,928 |
Aktuelle Version | 1.5 |
Letztes Update | 2023-08-08 |
Veröffentlichungsdatum | 2022-04-07 |
Bewertung | 4.67/5 Insgesamt 3 Bewertungen |
Entwickler | https://valentin.app |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://valentin.app/ |
Hilfeseite URL | https://valentin.app/gscDownloader.html |
Unterstützte Sprachen | 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" } |