Medium Next Generation Stats

Take your medium text stats to the Next Generation

Was ist Medium Next Generation Stats?

Medium Next Generation Stats ist eine Chrome-Erweiterung, die von Virgs entwickelt wurde, und ihr Hauptmerkmal ist "Take your medium text stats to the Next Generation".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Medium Next Generation Stats-Erweiterungs-CRX-Datei herunterladen

Laden Sie Medium Next Generation Stats-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

                        Take your medium text stats to the Next Generation and get rid of the old fashion dataless default medium.

Get larger time range, daily/weekly/monthly read/views/claps, and, specially, describes which article was view in which period.

Have fun!

### Features
-  Highlight post/publication
-  Different time ranges: 30/60/120/360/1800 days and current month
-  Super cool and animated charts
-  Top articles/publications read/viewed/upvotes/clapped/followed/earned in the time range
-  Different ranges visualization: daily, weekly and monthly
-  Download JSON and CSV files

### How to use
1. Go to your medium stats page: https://medium.com/me/stats
2. This is it

### Contact
Official website: https://virgs.me/mngs
Instagram: https://instagram.com/thevirgs
Medium: https://medium.com/@virgs  
Github: https://github.com/virgs  
Pagehub: https://pagehub.me/virgs  

### Source Code
You can find the source code on the link below: 
https://github.com/virgs/medium-next-gen-stats

### Development
1. Clone this repo
2. Go to chrome://extensions
3. Enable developer mode
4. Click on `load unpacked extension` and select the `medium-next-gen-stats` folder.

PRs are most welcome :)

### Acknowledgement
Thanks to @tomastrajan and @HcwXd for sharing their ideas and source code.   
You made my life a lot easier.                    

Grundlegende Informationen zur Erweiterung

Name Medium Next Generation Stats Medium Next Generation Stats
ID fhopcbdfcaleefngfpglahlpfhagendo
Offizielle URL https://chromewebstore.google.com/detail/medium-next-generation-st/fhopcbdfcaleefngfpglahlpfhagendo
Beschreibung Take your medium text stats to the Next Generation
Dateigröße 2.7 MB
Installationsanzahl 393
Aktuelle Version 1.0.23
Letztes Update 2021-11-01
Veröffentlichungsdatum 2020-06-09
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler Virgs
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://virgs.me/mngs
Hilfeseite URL https://github.com/virgs/medium-next-gen-stats
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Medium Next Generation Stats",
    "version": "1.0.23",
    "description": "Take your medium text stats to the Next Generation",
    "manifest_version": 2,
    "author": "Guilherme Virgs Moraes ",
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/medium.com\/*\/stats",
                "https:\/\/medium.com\/*\/stats\/",
                "https:\/\/medium.com\/*\/stats\/stories"
            ],
            "run_at": "document_idle",
            "css": [
                "src\/css\/mngs.css"
            ],
            "js": [
                "src\/libs\/regular.js",
                "src\/libs\/solid.js",
                "src\/libs\/fontawesome.js",
                "src\/libs\/Chart.bundle.js",
                "src\/js\/buy.js",
                "src\/js\/online-store.js",
                "src\/js\/totals.js",
                "src\/js\/process-earnings.js",
                "src\/js\/dynamic-table-handler.js",
                "src\/js\/vertical-stacked-bar-chart-generator.js",
                "src\/js\/pie-chart-generator.js",
                "src\/js\/chart-generator.js",
                "src\/js\/ranges.js",
                "src\/js\/renew-html.js",
                "src\/js\/renew-publication-html.js",
                "src\/js\/cache.js",
                "src\/js\/main.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/sym-16.png",
        "32": "images\/sym-32.png",
        "64": "images\/sym-64.png",
        "128": "images\/sym-128.png",
        "256": "images\/sym-256.png",
        "512": "images\/sym-512.png"
    },
    "browser_action": {
        "default_title": "Medium Next Generation Stats"
    }
}