Medium Stats Grabber

This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)

O que é Medium Stats Grabber?

Medium Stats Grabber é uma extensão do Chrome desenvolvida por murraygm, e sua principal característica é "This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Medium Stats Grabber

Baixe arquivos de extensão Medium Stats Grabber no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        A quick and dirty Google.Chrome extension that grabs story stats from your Medium.com stats page and saves them as a .CSV file.

Once installed in Chrome log into your Medium.com site, go to your Stats page and scroll to the last item you want the stats for (as Medium uses infinite scrolling).
Hit the little 'M' extension icon and it will generate a .CSV file (with "|" delimiters).
Works for personal and publications.

Now has published date and handles posts that are not added to publications.

1.6 Fix scraping bug stopping download

1.5 Fix scraping bug stopping download

1.4 Fix scraping bug stopping download

1.3 update:
Fixed bug where articles not in a publication had wrong link in personal stats.
Added additional date column 'liveDate' to capture go live date rather than date added to publication (pubDate)                    

Informações Básicas da Extensão

Nome Medium Stats Grabber Medium Stats Grabber
ID gdomhiacoiloiecaholjiegdaklelpig
URL Oficial https://chrome.google.com/webstore/detail/medium-stats-grabber/gdomhiacoiloiecaholjiegdaklelpig
Descrição This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)
Tamanho do Arquivo 5.1 KB
Contagem de Instalações 183
Versão Atual 1.6
Última Atualização 2021-08-24
Data de Publicação 2019-03-08
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor murraygm
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/murraygm/Chrome-Medium-Stats-Grabber
URL da Página de Ajuda https://medium.com/design-strategy-data-people/getting-your-medium-stats-87a48751fa6d
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Medium Stats Grabber",
    "description": "This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)",
    "version": "1.6",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/medium.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}