Redium

Automatically unblock medium articles through proxies.

Cos'è Redium?

Redium è un'estensione di Chrome sviluppata da https://anissan.com, e la sua funzione principale è "Automatically unblock medium articles through proxies.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Redium

Scarica i file di estensione Redium in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Redium Redium
ID aapiedkipcbeplicbbicchmdmpinhjdl
URL Ufficiale https://chromewebstore.google.com/detail/redium/aapiedkipcbeplicbbicchmdmpinhjdl
Descrizione Automatically unblock medium articles through proxies.
Dimensione del File 11.55 KB
Conteggio Installazioni 4,388
Versione Corrente 2.0
Ultimo Aggiornamento 2023-08-24
Data di Pubblicazione 2023-05-11
Valutazione 5.00/5 Totale 37 Valutazioni
Sviluppatore https://anissan.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ni554n/redium
URL della Pagina di Aiuto https://github.com/ni554n/redium/issues
Lingue Supportate 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"
            ]
        }
    ]
}