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)
Was ist Medium Stats Grabber?
Medium Stats Grabber ist eine Chrome-Erweiterung, die von murraygm entwickelt wurde, und ihr Hauptmerkmal ist "This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)".
Erweiterungsscreenshots
Medium Stats Grabber-Erweiterungs-CRX-Datei herunterladen
Laden Sie Medium Stats Grabber-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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)
Grundlegende Informationen zur Erweiterung
Name | |
ID | gdomhiacoiloiecaholjiegdaklelpig |
Offizielle URL | https://chrome.google.com/webstore/detail/medium-stats-grabber/gdomhiacoiloiecaholjiegdaklelpig |
Beschreibung | This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter) |
Dateigröße | 5.1 KB |
Installationsanzahl | 183 |
Aktuelle Version | 1.6 |
Letztes Update | 2021-08-24 |
Veröffentlichungsdatum | 2019-03-08 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | murraygm |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/murraygm/Chrome-Medium-Stats-Grabber |
Hilfeseite URL | https://medium.com/design-strategy-data-people/getting-your-medium-stats-87a48751fa6d |
Unterstützte Sprachen | 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" ] } } |