No Bloat Fandom

Remove the intrusive parts of fandom.com wikis

No Bloat Fandom là gì?

No Bloat Fandom là một tiện ích mở rộng Chrome được phát triển bởi aaronldickmandev, và tính năng chính của nó là "Remove the intrusive parts of fandom.com wikis".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng No Bloat Fandom

Tải xuống các tệp mở rộng No Bloat Fandom dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên No Bloat Fandom No Bloat Fandom
ID bfnlgjhmkfahjeheaieophmhefdlmfln
URL Chính Thức https://chromewebstore.google.com/detail/no-bloat-fandom/bfnlgjhmkfahjeheaieophmhefdlmfln
Mô tả Remove the intrusive parts of fandom.com wikis
Kích Thước Tệp 12.42 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.8.0
Cập Nhật Lần Cuối 2024-01-16
Ngày Phát Hành 2022-09-06
Đánh Giá 5.00/5 Tổng số 17 Đánh Giá
Nhà Phát Triển aaronldickmandev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}