Read Medium for free
Read Medium stories without leaving the page if you reached to free reading limit.
Что такое Read Medium for free?
Read Medium for free - это расширение Chrome, разработанное Mesut Tasci, и его основная функция - "Read Medium stories without leaving the page if you reached to free reading limit.".
Снимки экрана расширения
Скачать файл CRX расширения Read Medium for free
Скачайте файлы расширений Read Medium for free в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | feckflmdfioohghkgojnilnlaelfgffl |
Официальный URL | https://chrome.google.com/webstore/detail/read-medium-for-free/feckflmdfioohghkgojnilnlaelfgffl |
Описание | Read Medium stories without leaving the page if you reached to free reading limit. |
Размер файла | 30.53 KB |
Количество установок | 9,081 |
Текущая Версия | 2.4 |
Последнее Обновление | 2021-09-08 |
Дата публикации | 2020-09-20 |
Рейтинг | 3.33/5 Всего 36 оценок |
Разработчик | Mesut Tasci |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/mesuutt/read-medium-extension |
URL страницы помощи | https://github.com/mesuutt/read-medium-extension |
Поддерживаемые языки | 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" } } |