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)

什么是Medium Stats Grabber?

Medium Stats Grabber是由murraygm开发的Chrome扩展程序,该扩展的主要功能是“This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)”。

扩展截图

screenshot

下载Medium Stats Grabber扩展crx文件

下载Medium Stats Grabber扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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)                    

扩展基本信息

名称 Medium Stats Grabber Medium Stats Grabber
ID gdomhiacoiloiecaholjiegdaklelpig
官方URL https://chrome.google.com/webstore/detail/medium-stats-grabber/gdomhiacoiloiecaholjiegdaklelpig
简介 This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)
文件大小 5.1 KB
安装次数 183
当前版本 1.6
更新时间 2021-08-24
上架时间 2019-03-08
评分 5.00/5 共1次评分
开发者 murraygm
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/murraygm/Chrome-Medium-Stats-Grabber
帮助页面URL https://medium.com/design-strategy-data-people/getting-your-medium-stats-87a48751fa6d
支持的语言 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"
        ]
    }
}