Break the wall
This extension allows you to read any website without distractions or ads of any type
什麼是Break the wall?
Break the wall是由https://erasmo.dev開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to read any website without distractions or ads of any type”。
擴展截圖
下載Break the wall擴展crx文件
下載Break the wall擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension remove PAYWALLS from ANY website.
If the bad PAYWALL of any page is breaking your concentration, just BREAK THE WALL!
-- Version 2.0.0 --
- Outline service was shutdown, replaced by https://12ft.io/
-- Version 1.0.1 --
- Removed useless logic.
- Performance Optimizations. 擴展基本資訊
| 名稱 | |
| ID | nibfdabgnekfamcpaghohhhgbbjoflha |
| 官方網址 | https://chromewebstore.google.com/detail/break-the-wall/nibfdabgnekfamcpaghohhhgbbjoflha |
| 簡介 | This extension allows you to read any website without distractions or ads of any type |
| 檔案大小 | 45.81 KB |
| 安裝次數 | 1,270 |
| 目前版本 | 2.0.0 |
| 更新時間 | 2022-08-16 |
| 上架時間 | 2020-09-04 |
| 評分 | 3.29/5 共 7 次評分 |
| 開發者 | https://erasmo.dev |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://erasmo.dev |
| 說明頁面URL | https://erasmo.dev |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Break the wall",
"version": "2.0.0",
"manifest_version": 2,
"description": "This extension allows you to read any website without distractions or ads of any type",
"browser_action": {
"default_icon": "icon128.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"jquery.min.js",
"content_script.js"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"permissions": [
"activeTab",
"storage"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |