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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://makemediumreadable.com และคุณลักษณะหลักของมันคือ "Neutralizes annoying parts of the Medium reading experience and lets you read again."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Make Medium Readable Again

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

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

                        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"
    ]
}