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はMesut Tasciによって開発されたChromeの拡張機能で、その主な機能は「Read Medium stories without leaving the page if you reached to free reading limit.」です。
拡張機能のスクリーンショット
Read Medium for free拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" } } |