Medium Distribution Info

Shows distribution info about your (and other people's stories) on Medium!

Medium Distribution Info란 무엇입니까?

Medium Distribution Info은(는) arousedbywords에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows distribution info about your (and other people's stories) on Medium!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Medium Distribution Info 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Do you feel that Medium.com doesn't provide you with enough information about your stories as you want? Do you want to deep dive into your statistics and analyze which of your stories are doing great? And you want to know why? I decided to create a chrome extension that provides you with a little more detail about your stories by showing just that little extra.

This extension shows which of your stories are Chosen for further Distribution (formerly known as Curated) right at your fingertips. Additionally, it tells you what topics the stories of other Medium-authors are distributed in.

🚀 FEATURES
 ⭐️ Shows which stories are Chosen for further Distribution in the stats-page
 ⭐️ Shows in which topic an article was chosen for further distribution
 ⭐️ Show the summary of your stats in a new row
 ⭐️ Shows additional distribution information in the statistics details of stories
 ⭐️ Shows the topics for which any story on medium.com was distributed
 ⭐️ Download your stats, including the primary distribution topic
 ⭐️ Analysis of distributed stories
 ⭐️ Compatible with Enhanced Medium Stats
 ⭐️ Compatible with Medium Next Generation Stats
 ⭐️ Compatible with Medium Earnings

📅 CHANGELOG
The full changelog and all release notes can be found here:
https://medium.com/whats-up-m/medium-distribution-info-releases-d6e8c9b3b5b4


🧩 SOURCE CODE
The source will be uploaded to github sometime soon.

❤️ ATTRIBUTION
The source code for this project was inspired by Enhanced Medium Stats by Tomas Trajan. Check out his extension at https://chrome.google.com/webstore/detail/medium-enhanced-stats/jnomnfoenpdinfkpaaigokicgcfkomjo
Some code was inspired by an extension by Guilherme Brito. Check out his awesome extension here: https://chrome.google.com/webstore/detail/medium-next-generation-st/fhopcbdfcaleefngfpglahlpfhagendo

🐛 FEATURE REQUESTS AND BUG REPORTS
It's probably easiest to shoot me a message at medium: https://muffinimal.medium.com/ if you want to report a bug or request a feature

☕BUY ME A COFFEE
Want to buy me a coffee? By all means! Visit https://www.buymeacoffee.com/muffinimal for a donation. You do want to buy me a coffee, but not like this? Awesome, I hope we meet in real life! Or, if you don't, then it still would be great to meet you. 💕                    

확장 프로그램 기본 정보

이름 Medium Distribution Info Medium Distribution Info
ID ifjjhckanopchafmmiddkkiamjkcngca
공식 URL https://chromewebstore.google.com/detail/medium-distribution-info/ifjjhckanopchafmmiddkkiamjkcngca
설명 Shows distribution info about your (and other people's stories) on Medium!
파일 크기 437 KB
설치 횟수 706
현재 버전 4.0.1
최근 업데이트 2022-04-14
출시 날짜 2021-07-08
평점 5.00/5 총 3 개의 평점
개발자 arousedbywords
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://muffinimal.medium.com/
도움말 페이지 URL https://muffinimal.medium.com/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Medium Distribution Info",
    "version": "4.0.1",
    "description": "Shows distribution info about your (and other people's stories) on Medium!",
    "manifest_version": 3,
    "author": "Martin van Soest <@muffinimal>",
    "permissions": [
        "storage",
        "management"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.medium.com\/*",
                "https:\/\/medium.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "src\/medium-tools.js",
                "src\/general-tools.js",
                "src\/statsoverview\/screenresolution.js",
                "src\/statsoverview\/statsOverview-html.js",
                "src\/post\/post-utils.js",
                "src\/post\/post-distribution-info.js",
                "src\/post\/post-detail-html.js",
                "src\/stats-details\/stats-details.js",
                "src\/stats-details\/stats-details-html.js",
                "src\/data.js",
                "src\/main.js"
            ],
            "css": [
                "src\/css\/distributionInfo.css"
            ]
        }
    ],
    "icons": {
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "action": {
        "default_title": "Medium Distribution Info",
        "default_popup": "src\/popup\/popup.html"
    }
}