Medium Unhooked

Hides the news feed on Medium.com

什麼是Medium Unhooked?

Medium Unhooked是由Pamela Fox開發的Chrome擴展程式,該擴展的主要功能是“Hides the news feed on Medium.com”。

擴展截圖

screenshot

下載Medium Unhooked擴展crx文件

下載Medium Unhooked擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Medium Unhooked Medium Unhooked
ID chaldheffndbdmcoehdjhdllpnchffdo
官方網址 https://chrome.google.com/webstore/detail/medium-unhooked/chaldheffndbdmcoehdjhdllpnchffdo
簡介 Hides the news feed on Medium.com
檔案大小 6.15 KB
安裝次數 13
目前版本 0.9
更新時間 2018-07-18
上架時間 2018-07-18
評分 5.00/5 共 2 次評分
開發者 Pamela Fox
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/pamelafox/medium-feed-hider
說明頁面URL https://github.com/pamelafox/medium-feed-hider/issues
支援的語言 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
}