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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}