MediumLytics - Awesome Medium Stats

Everything missing from Medium Stats and other Tools to know about your Medium Audience and Traffic is only a few clicks away!

MediumLytics - Awesome Medium Statsคืออะไร?

MediumLytics - Awesome Medium Stats เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tommaso De Ponti - tdep.xycloo.com และคุณลักษณะหลักของมันคือ "Everything missing from Medium Stats and other Tools to know about your Medium Audience and Traffic is only a few clicks away!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MediumLytics - Awesome Medium Stats

ดาวน์โหลดไฟล์ส่วนขยาย MediumLytics - Awesome Medium Stats ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Table of Contents:
- Introduction
- "Classic" tools
- Know your Audience with MediumLytics (totally different than Medium's built-in "audience stats" tool)
- Better traffic to know on which sources to work on
- Removing the all-time-earnings headache by seeing a sum of all your monthly earnings in one number

I've built this Must-Have Stats web extension because as a Medium Top Writer myself, I've always felt that the Stats page on Medium does fine on telling you your views/reads numbers with pretty charting, but missed some key points about your audience.

Something was missing, and being a Developer who appears to like testing APIs, I began examining Medium's, and not the one well-documented on Github but the one the Medium Web App actually uses. 

My "studies" highlighted that there is much more potential for Stats given the information provided by the API, so I decided to quickly build something that could take advantage of it.

Besides a classic total views/reads page, I've decided to bring up also:

- total claps
- total fans


Now is when things start getting interesting with the following tools:

- Audience
- Traffic

The Audience Page will tell you the following about your Medium Audience of the last few Months:
- Followers
- Fans
- "Loyal Fans"
- Member Fans (with percentages)

This was a game changer for me as I could have finally viewed 
- how many people liked my work more than once("Loyal Fans")
- If my fans are mostly Members or not. Because Medium Members make you money with their reading time, and you want to make sure your Audience mostly contains Medium Members
(IMPORTANT NOTE: this page will take a few seconds to load as Medium made my job harder to check which fans where members)

The Traffic page is another Game Changer. You already can see the traffic for each one of your stories, what's missing is a global traffic, so I built it.

With this tool you'll see what sources globally take more readers to your work, and what sources you need to work on in order to get more readers.

Last but not least, the earnings page will display your all-time earnings(without bonuses) all in one number without the need of going trough each month calculating them.

Thanks for downloading, and if you have questions, shoot me an email at [email protected]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ MediumLytics - Awesome Medium Stats MediumLytics - Awesome Medium Stats
ID ndjijhhnfgoccnehegembgchinhdhdmh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mediumlytics-awesome-medi/ndjijhhnfgoccnehegembgchinhdhdmh
คำอธิบาย Everything missing from Medium Stats and other Tools to know about your Medium Audience and Traffic is only a few clicks away!
ขนาดไฟล์ 146 KB
จำนวนการติดตั้ง 107
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-09-03
วันที่เผยแพร่ 2021-09-03
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Tommaso De Ponti - tdep.xycloo.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://heytdep.github.io
URL หน้าช่วยเหลือ https://heytdep.github.io
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MediumLytics - Awesome Medium Stats",
    "version": "1.0.0",
    "description": "Everything missing from Medium Stats and other Tools to know about your Medium Audience and Traffic is only a few clicks away!",
    "short_name": "MediumLyticsStats",
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/medium.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "css": [
                "background.css"
            ],
            "js": [
                "background.js"
            ]
        }
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_title": "MediumLytics Stats",
        "default_popup": "index.html",
        "default_icon": "icon.png"
    }
}