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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Faruk Cankaya, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης Medium For Free

Λήψη αρχείων επέκτασης 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"
    }
}