Badoo without ads

This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.

O que é Badoo without ads?

Badoo without ads é uma extensão do Chrome desenvolvida por https://namata.ru, e sua principal característica é "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Badoo without ads

Baixe arquivos de extensão Badoo without ads 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

                        This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.                    

Informações Básicas da Extensão

Nome Badoo without ads Badoo without ads
ID negdlffpkdmjjjbeebnibofbkiclejkd
URL Oficial https://chromewebstore.google.com/detail/badoo-without-ads/negdlffpkdmjjjbeebnibofbkiclejkd
Descrição This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.
Tamanho do Arquivo 254 KB
Contagem de Instalações 147
Versão Atual 1.5
Última Atualização 2020-07-08
Data de Publicação 2020-03-26
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://namata.ru
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://namata.ru/extensions/badoonoads
URL da Página de Ajuda http://namata.ru/support/thanksforinstall
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Badoo without ads",
    "description": "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.",
    "version": "1.5",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.badoo.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "*:\/\/*.badoo.com\/*"
    ]
}