Medium Earnings Info
Breaks down all of your earnings on medium.com by providing detailed statistics
Τι είναι το Medium Earnings Info;
Το Medium Earnings Info είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον arousedbywords, και η κύρια λειτουργία του είναι "Breaks down all of your earnings on medium.com by providing detailed statistics".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Medium Earnings Info
Λήψη αρχείων επέκτασης Medium Earnings Info σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Medium Earnings Info gives you an in-depth view of your earnings per story over time. Access your earnings information by clicking on the Earnings button on the stats page or use the popup. This will open up a new tab with your data. 🚀FEATURES ⭐️ Earnings per story or per day/week/month money was earned ⭐️ Quick overview of past performance ⭐️ Views and read time per view per day on your stats-page and on a dedicated earnings-page ⭐️ Export your earnings via csv and excel ⭐️ Graphs to explore your earnings even further 🐛 FEATURE REQUESTS AND BUG REPORTS It's probably easiest to shoot me a message at medium: https://muffinimal.medium.com/ if you want to report a bug or request a feature 📅 VERSION HISTORY v0.1 Initial version with basic functionality for beta-testers. v0.2 Revamped the table to include more data and allow interactivity for beta-testers v1.0 Initial version with basic features to analyze and download your earnings v1.1.2 Better filters, added charts, ratios and minor improvements v1.2 a brand new table and some major bug fixes v1.3 New styling and better overview of past years v1.3.1 bugfixes on disappearing summary and earnings/second v1.4 UX overhaul, removal of legacy table. Changed ¢/s to ¢/m, added story-graphs, added help, added link to medium-stats v1.5 Added excel-support, monthly views and human readable read times (again) v1.6 Added earnings-info to stats-page Feedback and feature requests are welcome! ❤️ ATTRIBUTION This extension gets most of its data-acquisition fundamentals from an extension written by Guilherme Brito. Check out his awesome extension here: https://chrome.google.com/webstore/detail/medium-next-generation-st/fhopcbdfcaleefngfpglahlpfhagendo ☕BUY ME A COFFEE Want to buy me a coffee? By all means! Visit https://www.buymeacoffee.com/muffinimal or https://www.patreon.com/muffinimal for a donation. You do want to buy me a coffee, but not like this? Awesome, I hope we meet in real life! Or, if you don't, then it still would be great to meet you. 💕
Βασικές Πληροφορίες Επέκτασης
Όνομα | Medium Earnings Info |
ID | eaalkfagdfokodepkfpcckcfballnedm |
Επίσημο URL | https://chromewebstore.google.com/detail/medium-earnings-info/eaalkfagdfokodepkfpcckcfballnedm |
Περιγραφή | Breaks down all of your earnings on medium.com by providing detailed statistics |
Μέγεθος Αρχείου | 1.2 MB |
Αριθμός Εγκαταστάσεων | 381 |
Τρέχουσα Έκδοση | 1.6 |
Τελευταία Ενημέρωση | 2022-04-12 |
Ημερομηνία Δημοσίευσης | 2021-11-18 |
Αξιολόγηση | 4.17/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | arousedbywords |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://muffinimal.medium.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://muffinimal.medium.com |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Medium Earnings Info", "description": "Breaks down all of your earnings on medium.com by providing detailed statistics", "version": "1.6", "icons": { "16": "logo\/logo-16.png", "48": "logo\/logo-48.png", "128": "logo\/logo-128.png" }, "action": { "default_title": "Medium Earnings", "default_popup": "popup\/popup.html" }, "permissions": [ "management" ], "background": { "service_worker": "service-worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/medium.com\/*" ], "js": [ "src\/general-utils.js", "src\/medium-utils.js", "src\/earnings-medium.js", "src\/stats-page\/statsOverview-html.js", "src\/main.js", "src\/libs\/fontawesome\/fontawesome.min.js", "src\/libs\/fontawesome\/regular.min.js", "src\/libs\/luxon\/luxon.min.js" ], "css": [ "src\/stats-page\/statsOverview.css" ] } ] } |