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!”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Medium Any Author Stats
ID ahepaemleacieeongldddhambknoomof
官方網址 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
電子郵箱 [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"
    }
}