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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย murraygm และคุณลักษณะหลักของมันคือ "This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Medium Stats Grabber

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        ]
    }
}