Medium Any Author Stats
The statistics of any Medium author. Enter Medium author's page and click a button to see their detailed statistics!
Medium Any Author Stats là gì?
Medium Any Author Stats là một tiện ích mở rộng Chrome được phát triển bởi Bartosz Salwiczek, và tính năng chính của nó là "The statistics of any Medium author. Enter Medium author's page and click a button to see their detailed statistics!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Medium Any Author Stats
Tải xuống các tệp mở rộng Medium Any Author 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
Medium Any Author Stats is a tool to see detailed statistics of all the authors on the Medium website. All you need to do is to enter the Medium author's page, load their data and enjoy insightful statistics! 🔥FEATURES ✔️ Number of followers ✔️ Total posts number ✔️ How many posts are locked for medium subscribers ✔️ Number of newsletter subscribers ✔️ If the author is a medium subscriber (and how long) ✔️ Claps, responses and amount of clappers in the aggregated view ✔️ Claps, responses and amount of clappers graph for individual posts. 📗RESOURCES 📖 Introduction article: https://medium.com/@bsalwiczek/i-made-a-chrome-extension-for-medium-users-b8789a7ba204 ⚙️ Step-by-step article on how this extension was built using React and Typescript: https://medium.com/@bsalwiczek/how-to-develop-react-chrome-extension-for-medium-in-26-steps-d0401149e3a2 📜 Github repository: https://github.com/BSalwiczek/medium-any-author-stats
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Medium Any Author Stats |
ID | ahepaemleacieeongldddhambknoomof |
URL Chính Thức | https://chromewebstore.google.com/detail/medium-any-author-stats/ahepaemleacieeongldddhambknoomof |
Mô tả | The statistics of any Medium author. Enter Medium author's page and click a button to see their detailed statistics! |
Kích Thước Tệp | 788 KB |
Số Lần Cài Đặt | 414 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2022-04-26 |
Ngày Phát Hành | 2022-03-31 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Bartosz Salwiczek |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Medium Any Author Stats", "description": "The statistics of any Medium author. Enter Medium author's page and click a button to see their detailed statistics!", "version": "0.0.2", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/*.medium.com\/*" ], "js": [ "mediumQuery.js", "contentScript.js" ] } ], "action": { "default_popup": "index.html", "default_title": "Open Medium Any Authors Stats" }, "icons": { "16": "icons\/logo16.png", "32": "icons\/logo32.png", "48": "icons\/logo48.png", "128": "icons\/logo128.png" } } |