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 |
| 公式URL | 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 |
| Eメール | [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"
}
} | |