No Bloat Fandom
Remove the intrusive parts of fandom.com wikis
No Bloat Fandomคืออะไร?
No Bloat Fandom เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aaronldickmandev และคุณลักษณะหลักของมันคือ "Remove the intrusive parts of fandom.com wikis"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย No Bloat Fandom
ดาวน์โหลดไฟล์ส่วนขยาย 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 } } |