GSC crawl stats downloader

a helper to efficiently download crawl data from GSC

Co je GSC crawl stats downloader?

GSC crawl stats downloader je rozšíření Chrome vyvinuté https://valentin.app, a jeho hlavní funkcí je „a helper to efficiently download crawl data from GSC“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření GSC crawl stats downloader

Stáhněte si soubory rozšíření GSC crawl stats downloader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název GSC crawl stats downloader GSC crawl stats downloader
ID bpekjbefojkhefgcfhfeohjfncbpioam
Oficiální URL https://chromewebstore.google.com/detail/gsc-crawl-stats-downloade/bpekjbefojkhefgcfhfeohjfncbpioam
Popis a helper to efficiently download crawl data from GSC
Velikost souboru 1.78 MB
Počet instalací 1,928
Aktuální Verze 1.5
Poslední Aktualizace 2023-08-08
Datum Vydání 2022-04-07
Hodnocení 4.67/5 Celkem 3 Hodnocení
Vývojář https://valentin.app
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://valentin.app/
URL Stránky Nápovědy https://valentin.app/gscDownloader.html
Podporované Jazyky 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"
}