Medium Enchanted Stats & Tags

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

Wat is Medium Enchanted Stats & Tags?

Medium Enchanted Stats & Tags is een Chrome-extensie ontwikkeld door Jakub Jirak, en de belangrijkste functie is "Medium Enhanced Stats on steroids...little adjustments and focus on improve Tag searching.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Medium Enchanted Stats & Tags

Download Medium Enchanted Stats & Tags-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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/                    

Basisinformatie over de Extensie

Naam Medium Enchanted Stats & Tags Medium Enchanted Stats & Tags
ID ohejhbelepjadomnepldocfpmigjekdn
Officiële URL https://chromewebstore.google.com/detail/medium-enchanted-stats-ta/ohejhbelepjadomnepldocfpmigjekdn
Beschrijving Medium Enhanced Stats on steroids...little adjustments and focus on improve Tag searching.
Bestandsgrootte 423 KB
Aantal Installaties 36
Huidige Versie 1.1.6
Laatst Bijgewerkt 2023-11-26
Publicatiedatum 2023-03-13
Ontwikkelaar Jakub Jirak
E-mail jakub@jakubjirak.com
Betalingswijze free
Extensiewebsite https://jakubjirak.com
Help Pagina-URL https://ko-fi.com/jakubjirak
Ondersteunde Talen 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"
    }
}