GSC crawl stats downloader

a helper to efficiently download crawl data from GSC

What is GSC crawl stats downloader?

GSC crawl stats downloader is a Chrome extension developed by https://valentin.app, and its main feature is "a helper to efficiently download crawl data from GSC".

Extension Screenshots

screenshot

Download GSC crawl stats downloader Extension CRX File

Download GSC crawl stats downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name GSC crawl stats downloader GSC crawl stats downloader
ID bpekjbefojkhefgcfhfeohjfncbpioam
Official URL https://chromewebstore.google.com/detail/gsc-crawl-stats-downloade/bpekjbefojkhefgcfhfeohjfncbpioam
Description a helper to efficiently download crawl data from GSC
File Size 1.78 MB
Installation Count 1,928
Current Version 1.5
Last Updated 2023-08-08
Publish Date 2022-04-07
Rating 4.67/5 Total 3 Ratings
Developer https://valentin.app
Email [email protected]
Payment Type free
Extension Website https://valentin.app/
Help Page URL https://valentin.app/gscDownloader.html
Supported Languages 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"
}