Medium Enchanted Stats & Tags

Medium Enhanced Stats on steroids...little adjustments and focus on improve Tag searching.

Medium Enchanted Stats & Tags란 무엇입니까?

Medium Enchanted Stats & Tags은(는) Jakub Jirak에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Medium Enhanced Stats on steroids...little adjustments and focus on improve Tag searching."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Medium Enchanted Stats & Tags 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Your reach & summary of your articles and without responses stats with a single click and many improvements of the Medium stats page!

⚠️ Please keep in mind, this extension works only if you have and are logged into your Medium.com account. Without that, the extension can NOT retrieve your Medium stats


📊 Get overview about your total Medium reach and stats for articles and responses!

☕ Do you like this extensions?
🤝 More details behind the scenes are in my substack Medium Analytics
🔗 https://mediumanalytics.substack.com/

✨ FEATURES

📦 EXTENSION POPUP (in Chrome Toolbar)
✔️ Total reach indicator and milestones
✔️ Milestone reached celebration animation
✔️ Summary article table
✔️ Total article count, views, reads, fans, claps and claps per fan
✔️ User / publication selector (click user avatar in popup)
✔️ Download as an image and share with friends
✔️ Export and download stats as csv file extended by used tags information


📦 MEDIUM STATS PAGE
✔️ Bar chart article and response markers 
✔️ Bar chart article contribution to daily total ("Show in chart" button)
✔️ Claps per article and claps per fan for every article
✔️ Summary row with total article count, views, reads, ... 


📦 MEDIUM PARTNER PROGRAM EARNINGS PAGE
✔️ Total paid out earnings 
✔️ Breakdown of earning types
✔️ Breakdown of withheld earnings


📦 MEDIUM TAG PAGE (https://medium.com/tag/{tag-name})
✔️ Add detailed tag info
✔️ using local storage so information for tags is updated once per 6 hours


⚠️ TROUBLESHOOTING
🔥 Sometimes, using an extension can cause NOT being able to log into your Medium account; in that case, you can disable/remove the extension, log into your Medium account on that device and install the extension again

📖 ARTICLE
🤝 Introduction: https://medium.com/p/a58da6d0480

🛠️ CHANGELOG
v1.1.6 - Disable publication stats update by plugin
v1.1.5 - Bug fixes
v1.1.4 - Update popup
v1.1.3 - Update images, tags fixed
v1.1.2 - Performance optimization, layout fixes, disable icons, KO-FI button
v1.1.1 - Fix showing on tags details
v1.1.0 - Add new visual way to interpret tags value in stats overview
v1.0.12 - Fix downloading of exported csv file
v1.0.11 - Add more human-readable tag information to statistics
v1.0.10 - Add error handling for tab url watcher
v1.0.9 - Prolong interval between tag data updating from 6h to 1 week
v1.0.8 - Add titles to coloured values - use just mouse hover
v1.0.7 - fix update of data for those who use v1.0.2
v1.0.6 - remove unnecessary logs
v1.0.5 - use local storage to use fewer API calls. This will also decrease the triggering of Cloudflare
v1.0.4 - improving tag handling from related tags
v1.0.3 - little improvements and bug fixes
v1.0.2 - basic layout, disable multiple features from the original plugin
v1.0.1 - add custom API calls to receive information about tags
v1.0.0 - Initial Release

🤲🏻 OPEN SOURCE
👨🏻‍💻️ Did you know that the Medium Enhanced Stats & Tags is open source project?
⌨️ Check out source code -https://github.com/JirakJ/medium-enhanced-stats-and-tags
🔀 Check out latest changes - https://github.com/JirakJ/medium-enhanced-stats-and-tags/commits/master

Based on this project:
⌨️ Check out source code - https://github.com/tomastrajan/medium-enhanced-stats

🎉 On-demand confetti
⭕ Works in Opera too!
📦 With the help of this amazing addon
https://addons.opera.com/en/extensions/details/install-chrome-extensions/                    

확장 프로그램 기본 정보

이름 Medium Enchanted Stats & Tags Medium Enchanted Stats & Tags
ID ohejhbelepjadomnepldocfpmigjekdn
공식 URL https://chromewebstore.google.com/detail/medium-enchanted-stats-ta/ohejhbelepjadomnepldocfpmigjekdn
설명 Medium Enhanced Stats on steroids...little adjustments and focus on improve Tag searching.
파일 크기 423 KB
설치 횟수 36
현재 버전 1.1.6
최근 업데이트 2023-11-26
출시 날짜 2023-03-13
개발자 Jakub Jirak
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://jakubjirak.com
도움말 페이지 URL https://ko-fi.com/jakubjirak
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Medium Enchanted Stats & Tags",
    "version": "1.1.6",
    "description": "Medium Enhanced Stats on steroids...little adjustments and focus on improve Tag searching.",
    "manifest_version": 3,
    "author": "Jakub Jir\u00e1k ",
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/medium.com\/",
        "https:\/\/cdn-images-1.medium.com\/"
    ],
    "background": {
        "service_worker": "src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.medium.com\/*",
                "https:\/\/medium.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "css": [
                "src\/partner\/partner.css",
                "src\/tags\/tags.css",
                "src\/stats\/stats-total.css"
            ],
            "js": [
                "src\/libs\/rxjs.js",
                "src\/tags\/tags.js",
                "src\/partner\/partner.js",
                "src\/stats\/stats-total.js"
            ]
        }
    ],
    "icons": {
        "128": "src\/images\/icon-128.png"
    },
    "action": {
        "default_title": "Medium Enchanted Stats & Tags",
        "default_popup": "src\/popup\/popup.html"
    }
}