Medium Unhooked

Hides the news feed on Medium.com

Co to jest Medium Unhooked?

Medium Unhooked to rozszerzenie Chrome opracowane przez Pamela Fox, a jego główną funkcją jest „Hides the news feed on Medium.com”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Medium Unhooked

Pobierz pliki rozszerzeń Medium Unhooked w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Medium Unhooked Medium Unhooked
ID chaldheffndbdmcoehdjhdllpnchffdo
Oficjalny URL https://chrome.google.com/webstore/detail/medium-unhooked/chaldheffndbdmcoehdjhdllpnchffdo
Opis Hides the news feed on Medium.com
Rozmiar pliku 6.15 KB
Liczba instalacji 13
Aktualna Wersja 0.9
Ostatnia Aktualizacja 2018-07-18
Data Publikacji 2018-07-18
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Pamela Fox
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/pamelafox/medium-feed-hider
Adres URL Strony Pomocy https://github.com/pamelafox/medium-feed-hider/issues
Obsługiwane Języki 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
}