Freewall

Bypass paywalls by conveniently viewing snapshots of websites on web archive

Freewall란 무엇입니까?

Freewall은(는) Aristotly에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bypass paywalls by conveniently viewing snapshots of websites on web archive"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Freewall 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}