Medium Unhooked

Hides the news feed on Medium.com

Medium Unhooked là gì?

Medium Unhooked là một tiện ích mở rộng Chrome được phát triển bởi Pamela Fox, và tính năng chính của nó là "Hides the news feed on Medium.com".

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

screenshot

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

Tải xuống các tệp mở rộng Medium Unhooked 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

                        Medium.com has a front page news feed. It's great if you use Medium as a news discovery website, but not so great if you are prone to distraction (like most of us) and/or primarily use Medium.com as a writing tool. This extension hides the feed and instead presents you with quick links to write a new story or browse your drafts. You can still read stories that people share with you outside of the front page, you just won't be bombarded with story recommendations when you hit the front page anymore.                    

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

Tên Medium Unhooked Medium Unhooked
ID chaldheffndbdmcoehdjhdllpnchffdo
URL Chính Thức https://chrome.google.com/webstore/detail/medium-unhooked/chaldheffndbdmcoehdjhdllpnchffdo
Mô tả Hides the news feed on Medium.com
Kích Thước Tệp 6.15 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 0.9
Cập Nhật Lần Cuối 2018-07-18
Ngày Phát Hành 2018-07-18
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Pamela Fox
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/pamelafox/medium-feed-hider
URL Trang Trợ Giúp https://github.com/pamelafox/medium-feed-hider/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Medium Unhooked",
    "version": "0.9",
    "description": "Hides the news feed on Medium.com",
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/medium.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "manifest_version": 2
}