Freewall

Bypass paywalls by conveniently viewing snapshots of websites on web archive

Τι είναι το Freewall;

Το Freewall είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Aristotly, και η κύρια λειτουργία του είναι "Bypass paywalls by conveniently viewing snapshots of websites on web archive".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

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

Λήψη αρχείων επέκτασης Freewall σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Freewall is the ultimate solution to the frustration of encountering subscription paywalls on numerous news and media websites, especially when seeking financial news. Say goodbye to paywall obstacles with Freewall, as it effortlessly facilitates the viewing of web page snapshots through a user-friendly web archiver.

Accessing snapshots is a breeze – simply utilize the context menu item or the menu bar icon. Freewall seamlessly redirects you to the web archiver, displaying the content without the hindrance of paywalls. This extension ensures a smooth, barrier-free experience for users who aspire to enhance their knowledge and understanding of the world by reading online content.

Install Freewall for a hassle-free online reading experience, and enjoy unrestricted access to valuable information. The only requirement? A network that doesn't block the domain "https://archive.ph." Elevate your browsing experience with Freewall today!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Freewall Freewall
ID dhjghciiiiedfgidmcmablgbjndibhmf
Επίσημο URL https://chromewebstore.google.com/detail/freewall/dhjghciiiiedfgidmcmablgbjndibhmf
Περιγραφή Bypass paywalls by conveniently viewing snapshots of websites on web archive
Μέγεθος Αρχείου 22.53 KB
Αριθμός Εγκαταστάσεων 42
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-12-21
Ημερομηνία Δημοσίευσης 2023-12-21
Προγραμματιστής Aristotly
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Freewall",
    "version": "1.0",
    "description": "Bypass paywalls by conveniently viewing snapshots of websites on web archive",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "scripting",
        "notifications",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Click to be free"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": ".\/icons\/icon16.png",
        "32": ".\/icons\/icon32.png",
        "48": ".\/icons\/icon48.png",
        "128": ".\/icons\/icon128.png"
    }
}