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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Medium Stats Grabber एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        ]
    }
}