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”。
擴展截圖
下載Freewall擴展crx文件
下載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 |
ID | dhjghciiiiedfgidmcmablgbjndibhmf |
官方網址 | 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" } } |