Redium
Automatically unblock medium articles through proxies.
Qu'est-ce que Redium ?
Redium est une extension Chrome développée par https://anissan.com, et sa fonction principale est "Automatically unblock medium articles through proxies.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Redium
Téléchargez les fichiers d'extension Redium au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Redium |
ID | aapiedkipcbeplicbbicchmdmpinhjdl |
URL Officiel | https://chromewebstore.google.com/detail/redium/aapiedkipcbeplicbbicchmdmpinhjdl |
Description | Automatically unblock medium articles through proxies. |
Taille du Fichier | 11.55 KB |
Nombre d'Installations | 4,388 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2023-08-24 |
Date de Publication | 2023-05-11 |
Évaluation | 5.00/5 Total 37 Évaluations |
Développeur | https://anissan.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ni554n/redium |
URL de la Page d'Aide | https://github.com/ni554n/redium/issues |
Langues Prises en Charge | 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" ] } ] } |