Wiki Readifyer

Makes Wikipedia articles pleasantly readable. Nothing more. Nothing less.

Wiki Readifyer là gì?

Wiki Readifyer là một tiện ích mở rộng Chrome được phát triển bởi https://dasdawidt.com, và tính năng chính của nó là "Makes Wikipedia articles pleasantly readable. Nothing more. Nothing less.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wiki Readifyer

Tải xuống các tệp mở rộng Wiki Readifyer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Have you ever tried to read an Wikipedia article, trying to gain knowledge but the page's design just hindered your eyes from locating the words that held the desired wisdom?
Well, worry no more! Wiki Readifyer makes the knowledge you are searching for pleasantly readable. The wisdom you desire to read is just one installation away!
And the best thing: It doesn't remove anything from the page it only changes the layout while staying 100% faithful* to the original contents.

The following changes are applied to guarantee the best possible experience:
• responsive layout: articles are pleasantly readable at any window size
• slight reduction of text-background-contrast
• reduction of article width
• moving the table of contents to the right where it stays even when scrolling
• the title also stays visible when scrolling down
• some other little adjustments

*However, if the window width is too small the extension will hide the left sidebar, only to guarantee the best use of your precious screen space. To make it visible again, just make the window wider.

In 2023, many Wikipedias changed their default theme to Vector 2022, a more modern and user-friendly theme. Wiki Readifyer does not touch Wikipedia's layout if any theme other than the old (legacy) Vector theme is active. This means, to get the advertised layouts on Wikipedias with the new theme, you have to turn off the new skin.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wiki Readifyer Wiki Readifyer
ID kinhfkialnlpoomgdpolokhholkofeke
URL Chính Thức https://chromewebstore.google.com/detail/wiki-readifyer/kinhfkialnlpoomgdpolokhholkofeke
Mô tả Makes Wikipedia articles pleasantly readable. Nothing more. Nothing less.
Kích Thước Tệp 203 KB
Số Lần Cài Đặt 240
Phiên Bản Hiện Tại 1.4.4
Cập Nhật Lần Cuối 2023-09-30
Ngày Phát Hành 2020-06-30
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://dasdawidt.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.dasdawidt.com/wiki-readifyer
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wiki Readifyer",
    "short_name": "Wiki Readifyer",
    "version": "1.4.4",
    "description": "Makes Wikipedia articles pleasantly readable. Nothing more. Nothing less.",
    "author": "David Maier",
    "incognito": "split",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.wikipedia.org\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "styles\/style.css"
            ],
            "matches": [
                "*:\/\/*.wikipedia.org\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "128": "images\/128.png",
            "512": "images\/512.png"
        }
    },
    "icons": {
        "128": "images\/128.png",
        "512": "images\/512.png"
    },
    "permissions": [
        "storage"
    ]
}