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
电子邮箱 [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"
    }
}