Read Medium for free

Read Medium stories without leaving the page if you reached to free reading limit.

Co to jest Read Medium for free?

Read Medium for free to rozszerzenie Chrome opracowane przez Mesut Tasci, a jego główną funkcją jest „Read Medium stories without leaving the page if you reached to free reading limit.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Read Medium for free

Pobierz pliki rozszerzeń Read Medium for free 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

                        NOT WORKING ANYMORE. I AM GOING TO IMPLEMENT ANOTHER SOLUTION

------------------------

This extension only fetches Medium article without cookies and replace page content, like the opening article in incognito mode.

The extension is run only when you have reached to free reading limit and does not make any request outside of Medium.

Extension source code:
https://github.com/mesuutt/read-medium-extension                    

Podstawowe informacje o rozszerzeniu

Nazwa Read Medium for free Read Medium for free
ID feckflmdfioohghkgojnilnlaelfgffl
Oficjalny URL https://chrome.google.com/webstore/detail/read-medium-for-free/feckflmdfioohghkgojnilnlaelfgffl
Opis Read Medium stories without leaving the page if you reached to free reading limit.
Rozmiar pliku 30.53 KB
Liczba instalacji 9,081
Aktualna Wersja 2.4
Ostatnia Aktualizacja 2021-09-08
Data Publikacji 2020-09-20
Ocena 3.33/5 Łącznie 36 Oceny
Deweloper Mesut Tasci
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mesuutt/read-medium-extension
Adres URL Strony Pomocy https://github.com/mesuutt/read-medium-extension
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Read Medium for free",
    "description": "Read Medium stories without leaving the page if you reached to free reading limit.",
    "manifest_version": 2,
    "version": "2.4",
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*.medium.com\/*"
            ]
        }
    ],
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png",
        "16": "icons\/16.png"
    }
}