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とは何ですか?
Medium Any Author StatsはBartosz Salwiczekによって開発されたChromeの拡張機能で、その主な機能は「The statistics of any Medium author. Enter Medium author's page and click a button to see their detailed statistics!」です。
拡張機能のスクリーンショット
Medium Any Author Stats拡張機能のCRXファイルをダウンロード
Medium Any Author Stats拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Medium Any Author Stats |
ID | ahepaemleacieeongldddhambknoomof |
公式URL | https://chromewebstore.google.com/detail/medium-any-author-stats/ahepaemleacieeongldddhambknoomof |
説明 | The statistics of any Medium author. Enter Medium author's page and click a button to see their detailed statistics! |
ファイルサイズ | 788 KB |
インストール数 | 414 |
現在のバージョン | 0.0.2 |
最終更新日 | 2022-04-26 |
公開日 | 2022-03-31 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Bartosz Salwiczek |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } |