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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        ]
    }
}