Make Medium Readable Again

Neutralizes annoying parts of the Medium reading experience and lets you read again.

Make Medium Readable Again란 무엇입니까?

Make Medium Readable Again은(는) https://makemediumreadable.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Neutralizes annoying parts of the Medium reading experience and lets you read again."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Make Medium Readable Again 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Medium is pretty annoying to read when you're not logged in. This extension quietly fixes that on any Medium publication you visit.

It makes your reading experience more bearable by:

* Keeping the top navigation bar from sticking around
* Hiding the bottom "Get Updates" bar completely
* Shrinking massive header images
* Hiding "posts meter" bar and Upgrade header button
* Hiding "Open in App" button on mobile
* Blocking the "pardon the interruption" popup
* (Optionally) hiding the clap / share bar
* (Optionally) loading all post images up front, instead of lazy loading as you scroll
* (Optionally) disabling the popup menu that appears when selecting text

This extension is open source software! Want to contribute? Feel free: https://github.com/thebaer/MMRA

**A note about permissions**: this extension currently needs access on all sites, as certain Medium publications exist on custom domains. You can verify there isn't anything funny going on by looking at the code, and submit a patch if you'd like to improve this!

UPDATES

v1.5.2

* Fix "Disable Highlight Menu" option

v1.5.1

* Remove unneeded 'browser_action' value (affects Firefox users)

v1.5

* Block "Pardon the interruption" popup
* Hide DNT message

v1.4

* Option to disable the popup menu that appears when selecting text
* Hide "posts meter" bar and Upgrade header button
* Hide "Open in App" button on mobile

v1.3.1

* Fix Medium detection bug

v1.3

* Automatically shrink massive header images

v1.2

* Fix extension not applying after navigating to a post from a publication
* Add option to disable loading dynamic / lazy image loading                    

확장 프로그램 기본 정보

이름 Make Medium Readable Again Make Medium Readable Again
ID kljjfejkagofbgklifblndjelgabcmig
공식 URL https://chromewebstore.google.com/detail/make-medium-readable-agai/kljjfejkagofbgklifblndjelgabcmig
설명 Neutralizes annoying parts of the Medium reading experience and lets you read again.
파일 크기 10.76 KB
설치 횟수 10,349
현재 버전 1.5.2
최근 업데이트 2018-10-22
출시 날짜 2018-10-22
평점 3.54/5 총 93 개의 평점
개발자 https://makemediumreadable.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://makemediumreadable.com
도움말 페이지 URL https://github.com/thebaer/MMRA/issues
개인정보 보호 정책 페이지 URL https://write.as/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Make Medium Readable Again",
    "description": "Neutralizes annoying parts of the Medium reading experience and lets you read again.",
    "version": "1.5.2",
    "applications": {
        "gecko": {
            "id": "{28d1ed97-5ff6-432b-a26d-61896fe2cbed}",
            "strict_min_version": "42.0"
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "medium.css"
    ]
}