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
Eメール [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"
        ]
    }
}