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
扩展基本信息
名称 | No Bloat Fandom |
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 |
电子邮箱 | [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 } } |