Medium For Free

Read free-member-only Medium articles for free in a fast and secure way. It works for big publications that have their own domains

Medium For Freeとは何ですか?

Medium For FreeはFaruk Cankayaによって開発されたChromeの拡張機能で、その主な機能は「Read free-member-only Medium articles for free in a fast and secure way. It works for big publications that have their own domains」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Medium For Free拡張機能のCRXファイルをダウンロード

Medium For Free拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension allows you to access Medium articles for free on both normal browsers or Incognito browsers by clearing the cache that only belongs to Medium. Also, all Medium-backed publications like TowardsDataScience, The Mission, Personal Growth, etc. are included to free access.

There are many articles about how to access Medium articles for free. The most common way is to open the articles on the Incognito browser. However, it is a very cumbersome way to do it. If you keep the Incognito browser open, you cannot read premium articles more than 3. You need to restart the Incognito browser or clear the cache on it manually for every 3 articles that you want to read. This extension mainly automates this process.

Features:
- It works on both normal browsers and Incognito browsers.
- You can decide on which browser it should run. Since it clears the cache on medium, you cannot keep your session open. In this case, you can run it only on Incognito.
- It is working automatically. Do not need to click some buttons manually. Set your rules and leave it to run behind the scene.
- You can disable the extension when you do not need it without uninstalling it.

CHANGELOG:
**0.0.4**
- Mixed(Normal/Incognito browsing) mode is added. You can read paid medium articles for free in a new Incognito tab using 'Command+Shift+2' (for Mac users) or 'Ctrl+Shift+2' (for Windows users) shortcuts easily without loosing your session in the normal browser.
- Documentation/working is improved. A guide is added for enabling incognito mode and using the extension with 100% benefits.                    

拡張機能の基本情報

名前 Medium For Free Medium For Free
ID blplogjpejodjjclnpgbijbhoacbelfj
公式URL https://chrome.google.com/webstore/detail/medium-for-free/blplogjpejodjjclnpgbijbhoacbelfj
説明 Read free-member-only Medium articles for free in a fast and secure way. It works for big publications that have their own domains
ファイルサイズ 51.28 KB
インストール数 448
現在のバージョン 0.0.3
最終更新日 2022-01-24
公開日 2021-11-11
評価 4.43/5 合計 7 レビュー
開発者 Faruk Cankaya
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Medium For Free",
    "description": "Read free-member-only Medium articles for free in a fast and secure way. It works for big publications that have their own domains",
    "manifest_version": 3,
    "version": "0.0.3",
    "permissions": [
        "cookies",
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https:\/\/www.paypalobjects.com\/donate\/sdk\/donate-sdk.js;"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "\/images\/icon_16.png",
        "32": "\/images\/icon_32.png",
        "48": "\/images\/icon_48.png",
        "128": "\/images\/icon_128.png"
    }
}