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".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة No Bloat Fandom

قم بتنزيل ملفات الامتداد No Bloat Fandom بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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
    }
}