Redium
Automatically unblock medium articles through proxies.
What is Redium?
Redium is a Chrome extension developed by https://anissan.com, and its main feature is "Automatically unblock medium articles through proxies.".
Extension Screenshots
Download Redium Extension CRX File
Download Redium extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Redium |
ID | aapiedkipcbeplicbbicchmdmpinhjdl |
Official URL | https://chromewebstore.google.com/detail/redium/aapiedkipcbeplicbbicchmdmpinhjdl |
Description | Automatically unblock medium articles through proxies. |
File Size | 11.55 KB |
Installation Count | 4,388 |
Current Version | 2.0 |
Last Updated | 2023-08-24 |
Publish Date | 2023-05-11 |
Rating | 5.00/5 Total 37 Ratings |
Developer | https://anissan.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ni554n/redium |
Help Page URL | https://github.com/ni554n/redium/issues |
Supported Languages | 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" ] } ] } |