Medium Next Generation Stats

Take your medium text stats to the Next Generation

Medium Next Generation Statsとは何ですか?

Medium Next Generation StatsはVirgsによって開発されたChromeの拡張機能で、その主な機能は「Take your medium text stats to the Next Generation」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Medium Next Generation Stats拡張機能のCRXファイルをダウンロード

Medium Next Generation Stats拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Medium Next Generation Stats Medium Next Generation Stats
ID fhopcbdfcaleefngfpglahlpfhagendo
公式URL https://chromewebstore.google.com/detail/medium-next-generation-st/fhopcbdfcaleefngfpglahlpfhagendo
説明 Take your medium text stats to the Next Generation
ファイルサイズ 2.7 MB
インストール数 393
現在のバージョン 1.0.23
最終更新日 2021-11-01
公開日 2020-06-09
評価 5.00/5 合計 8 レビュー
開発者 Virgs
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://virgs.me/mngs
ヘルプページのURL https://github.com/virgs/medium-next-gen-stats
対応言語 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"
    }
}