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)
Qu'est-ce que Medium Stats Grabber ?
Medium Stats Grabber est une extension Chrome développée par murraygm, et sa fonction principale est "This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Medium Stats Grabber
Téléchargez les fichiers d'extension Medium Stats Grabber au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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)
Informations de Base sur l'Extension
Nom | |
ID | gdomhiacoiloiecaholjiegdaklelpig |
URL Officiel | https://chrome.google.com/webstore/detail/medium-stats-grabber/gdomhiacoiloiecaholjiegdaklelpig |
Description | This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter) |
Taille du Fichier | 5.1 KB |
Nombre d'Installations | 183 |
Version Actuelle | 1.6 |
Dernière Mise à Jour | 2021-08-24 |
Date de Publication | 2019-03-08 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | murraygm |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/murraygm/Chrome-Medium-Stats-Grabber |
URL de la Page d'Aide | https://medium.com/design-strategy-data-people/getting-your-medium-stats-87a48751fa6d |
Langues Prises en Charge | 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" ] } } |