Read Medium for free

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

Vad är Read Medium for free?

Read Medium for free är en Chrome-tillägg utvecklad av Mesut Tasci, och dess huvudfunktion är "Read Medium stories without leaving the page if you reached to free reading limit.".

Tilläggsskärmbilder

screenshot

Ladda ner Read Medium for free-förlängningens CRX-fil

Ladda ner Read Medium for free-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Read Medium for free Read Medium for free
ID feckflmdfioohghkgojnilnlaelfgffl
Officiell webbadress https://chrome.google.com/webstore/detail/read-medium-for-free/feckflmdfioohghkgojnilnlaelfgffl
Beskrivning Read Medium stories without leaving the page if you reached to free reading limit.
Filstorlek 30.53 KB
Antal Installationer 9,081
Aktuell Version 2.4
Senast Uppdaterad 2021-09-08
Publiceringsdatum 2020-09-20
Betyg 3.33/5 Totalt 36 Betyg
Utvecklare Mesut Tasci
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/mesuutt/read-medium-extension
Hjälpsida URL https://github.com/mesuutt/read-medium-extension
Stödda Språk 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"
    }
}