Redium
Automatically unblock medium articles through proxies.
Rediumとは何ですか?
Rediumはhttps://anissan.comによって開発されたChromeの拡張機能で、その主な機能は「Automatically unblock medium articles through proxies.」です。
拡張機能のスクリーンショット
Redium拡張機能のCRXファイルをダウンロード
Redium拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
However, it auto-redirects only if you open the article in a new tab, or manually click the extension icon / Alt + R. It currently supports proxies like: 1️⃣ Google Web Cache 2️⃣ 12ft.io 3️⃣ Scribe 4️⃣ LibMedium ℹ️ Google Web Cache and 12ft can unlock articles on websites other than medium.com. But they may or may not work 100% of the time. This extension doesn't collect any data. Checkout the "Website" link for source code and changelog on GitHub.
拡張機能の基本情報
名前 | Redium |
ID | aapiedkipcbeplicbbicchmdmpinhjdl |
公式URL | https://chromewebstore.google.com/detail/redium/aapiedkipcbeplicbbicchmdmpinhjdl |
説明 | Automatically unblock medium articles through proxies. |
ファイルサイズ | 11.55 KB |
インストール数 | 4,388 |
現在のバージョン | 2.0 |
最終更新日 | 2023-08-24 |
公開日 | 2023-05-11 |
評価 | 5.00/5 合計 37 レビュー |
開発者 | https://anissan.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/ni554n/redium |
ヘルプページのURL | https://github.com/ni554n/redium/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Redium", "version": "2.0", "description": "Automatically unblock medium articles through proxies.", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "action": [], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+R" } } }, "host_permissions": [ "*:\/\/*.medium.com\/*" ], "permissions": [ "activeTab", "contentSettings", "contextMenus", "management", "storage" ], "background": { "service_worker": "dist\/worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/webcache.googleusercontent.com\/*" ], "js": [ "dist\/webcache.js" ] } ] } |