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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The statistics of any Medium author. Enter Medium author's page and click a button to see their detailed statistics!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Medium Any Author Stats एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}