GSC crawl stats downloader

a helper to efficiently download crawl data from GSC

什麼是GSC crawl stats downloader?

GSC crawl stats downloader是由https://valentin.app開發的Chrome擴展程式,該擴展的主要功能是“a helper to efficiently download crawl data from GSC”。

擴展截圖

screenshot

下載GSC crawl stats downloader擴展crx文件

下載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 GSC crawl stats downloader
ID bpekjbefojkhefgcfhfeohjfncbpioam
官方網址 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"
}