Medium Next Generation Stats

Take your medium text stats to the Next Generation

Medium Next Generation Stats là gì?

Medium Next Generation Stats là một tiện ích mở rộng Chrome được phát triển bởi Virgs, và tính năng chính của nó là "Take your medium text stats to the Next Generation".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Medium Next Generation Stats

Tải xuống các tệp mở rộng Medium Next Generation Stats dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Medium Next Generation Stats Medium Next Generation Stats
ID fhopcbdfcaleefngfpglahlpfhagendo
URL Chính Thức https://chromewebstore.google.com/detail/medium-next-generation-st/fhopcbdfcaleefngfpglahlpfhagendo
Mô tả Take your medium text stats to the Next Generation
Kích Thước Tệp 2.7 MB
Số Lần Cài Đặt 393
Phiên Bản Hiện Tại 1.0.23
Cập Nhật Lần Cuối 2021-11-01
Ngày Phát Hành 2020-06-09
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Virgs
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://virgs.me/mngs
URL Trang Trợ Giúp https://github.com/virgs/medium-next-gen-stats
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}