Medium Next Generation Stats

Take your medium text stats to the Next Generation

O que é Medium Next Generation Stats?

Medium Next Generation Stats é uma extensão do Chrome desenvolvida por Virgs, e sua principal característica é "Take your medium text stats to the Next Generation".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Medium Next Generation Stats

Baixe arquivos de extensão Medium Next Generation Stats no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Medium Next Generation Stats Medium Next Generation Stats
ID fhopcbdfcaleefngfpglahlpfhagendo
URL Oficial https://chromewebstore.google.com/detail/medium-next-generation-st/fhopcbdfcaleefngfpglahlpfhagendo
Descrição Take your medium text stats to the Next Generation
Tamanho do Arquivo 2.7 MB
Contagem de Instalações 393
Versão Atual 1.0.23
Última Atualização 2021-11-01
Data de Publicação 2020-06-09
Classificação 5.00/5 Total de 8 Avaliações
Desenvolvedor Virgs
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://virgs.me/mngs
URL da Página de Ajuda https://github.com/virgs/medium-next-gen-stats
Idiomas Suportados 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"
    }
}