No Bloat Fandom

Remove the intrusive parts of fandom.com wikis

O que é No Bloat Fandom?

No Bloat Fandom é uma extensão do Chrome desenvolvida por aaronldickmandev, e sua principal característica é "Remove the intrusive parts of fandom.com wikis".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão No Bloat Fandom

Baixe arquivos de extensão No Bloat Fandom no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome No Bloat Fandom No Bloat Fandom
ID bfnlgjhmkfahjeheaieophmhefdlmfln
URL Oficial https://chromewebstore.google.com/detail/no-bloat-fandom/bfnlgjhmkfahjeheaieophmhefdlmfln
Descrição Remove the intrusive parts of fandom.com wikis
Tamanho do Arquivo 12.42 KB
Contagem de Instalações 1,000
Versão Atual 1.8.0
Última Atualização 2024-01-16
Data de Publicação 2022-09-06
Classificação 5.00/5 Total de 17 Avaliações
Desenvolvedor aaronldickmandev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
    }
}