No Bloat Fandom
Remove the intrusive parts of fandom.com wikis
No Bloat Fandomとは何ですか?
No Bloat Fandomはaaronldickmandevによって開発されたChromeの拡張機能で、その主な機能は「Remove the intrusive parts of fandom.com wikis」です。
拡張機能のスクリーンショット
No Bloat Fandom拡張機能のCRXファイルをダウンロード
No Bloat Fandom拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A lightweight extension to remove the unnecessary garbage from fandom.com wikis.
Source code, bug reports, feature requests go to:
https://github.com/aaronldickman/nobloatfandom 拡張機能の基本情報
| 名前 | |
| ID | bfnlgjhmkfahjeheaieophmhefdlmfln |
| 公式URL | https://chromewebstore.google.com/detail/no-bloat-fandom/bfnlgjhmkfahjeheaieophmhefdlmfln |
| 説明 | Remove the intrusive parts of fandom.com wikis |
| ファイルサイズ | 12.42 KB |
| インストール数 | 1,000 |
| 現在のバージョン | 1.8.0 |
| 最終更新日 | 2024-01-16 |
| 公開日 | 2022-09-06 |
| 評価 | 5.00/5 合計 17 レビュー |
| 開発者 | aaronldickmandev |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "No Bloat Fandom",
"permissions": [
"storage"
],
"description": "Remove the intrusive parts of fandom.com wikis",
"version": "1.8.0",
"icons": {
"128": "icon.png"
},
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"https:\/\/*.fandom.com\/*"
],
"js": [
"fandom-script.js"
],
"run_at": "document_start",
"all_frames": false
},
{
"matches": [
"https:\/\/*.fandom.com\/*"
],
"css": [
"fandom-styles.css"
],
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Customize no bloat fandom behavior",
"default_popup": "\/options-popover\/options-popover.html"
},
"options_ui": {
"page": "\/options-popover\/options-popover.html",
"open_in_tab": false
}
} | |