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 |
官方網址 | 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 } } |