No Bloat Fandom
Remove the intrusive parts of fandom.com wikis
Was ist No Bloat Fandom?
No Bloat Fandom ist eine Chrome-Erweiterung, die von aaronldickmandev entwickelt wurde, und ihr Hauptmerkmal ist "Remove the intrusive parts of fandom.com wikis".
Erweiterungsscreenshots
No Bloat Fandom-Erweiterungs-CRX-Datei herunterladen
Laden Sie No Bloat Fandom-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | bfnlgjhmkfahjeheaieophmhefdlmfln | 
| Offizielle URL | https://chromewebstore.google.com/detail/no-bloat-fandom/bfnlgjhmkfahjeheaieophmhefdlmfln | 
| Beschreibung | Remove the intrusive parts of fandom.com wikis | 
| Dateigröße | 12.42 KB | 
| Installationsanzahl | 1,000 | 
| Aktuelle Version | 1.8.0 | 
| Letztes Update | 2024-01-16 | 
| Veröffentlichungsdatum | 2022-09-06 | 
| Bewertung | 5.00/5 Insgesamt 17 Bewertungen | 
| Entwickler | aaronldickmandev | 
| [email protected] | |
| Zahlungsart | free | 
| Unterstützte Sprachen | 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
    }
}  |  |