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é es Medium Stats Grabber?
Medium Stats Grabber es una extensión de Chrome desarrollada por murraygm, y su función principal es "This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter)".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Medium Stats Grabber
Descarga archivos de extensión Medium Stats Grabber en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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)
Información Básica de la Extensión
Nombre | |
ID | gdomhiacoiloiecaholjiegdaklelpig |
URL Oficial | https://chrome.google.com/webstore/detail/medium-stats-grabber/gdomhiacoiloiecaholjiegdaklelpig |
Descripción | This extension will grab the story stats from your Medium.com stats page and save them as tabular data (csv with '|' delimiter) |
Tamaño del Archivo | 5.1 KB |
Cantidad de Instalaciones | 183 |
Versión Actual | 1.6 |
Última Actualización | 2021-08-24 |
Fecha de Publicación | 2019-03-08 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | murraygm |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/murraygm/Chrome-Medium-Stats-Grabber |
URL de la Página de Ayuda | https://medium.com/design-strategy-data-people/getting-your-medium-stats-87a48751fa6d |
Idiomas Soportados | 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" ] } } |