Redium

Automatically unblock medium articles through proxies.

Redium क्या है?

Redium https://anissan.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically unblock medium articles through proxies."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Redium एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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
ईमेल [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"
            ]
        }
    ]
}