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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" } } |