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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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
이메일 [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"
    }
}