GSC crawl stats downloader

a helper to efficiently download crawl data from GSC

Apa itu GSC crawl stats downloader?

GSC crawl stats downloader adalah ekstensi Chrome yang dikembangkan oleh https://valentin.app, dan fitur utamanya adalah "a helper to efficiently download crawl data from GSC".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi GSC crawl stats downloader

Unduh file ekstensi GSC crawl stats downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama GSC crawl stats downloader GSC crawl stats downloader
ID bpekjbefojkhefgcfhfeohjfncbpioam
URL Resmi https://chromewebstore.google.com/detail/gsc-crawl-stats-downloade/bpekjbefojkhefgcfhfeohjfncbpioam
Deskripsi a helper to efficiently download crawl data from GSC
Ukuran File 1.78 MB
Jumlah Instalasi 1,928
Versi Saat Ini 1.5
Terakhir Diperbarui 2023-08-08
Tanggal Publikasi 2022-04-07
Penilaian 4.67/5 Total 3 Penilaian
Pengembang https://valentin.app
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://valentin.app/
URL Halaman Bantuan https://valentin.app/gscDownloader.html
Bahasa yang Didukung 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"
}