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.

Cos'è Badoo without ads?

Badoo without ads è un'estensione di Chrome sviluppata da https://namata.ru, e la sua funzione principale è "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Badoo without ads

Scarica i file di estensione Badoo without ads in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Badoo without ads Badoo without ads
ID negdlffpkdmjjjbeebnibofbkiclejkd
URL Ufficiale https://chromewebstore.google.com/detail/badoo-without-ads/negdlffpkdmjjjbeebnibofbkiclejkd
Descrizione This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.
Dimensione del File 254 KB
Conteggio Installazioni 147
Versione Corrente 1.5
Ultimo Aggiornamento 2020-07-08
Data di Pubblicazione 2020-03-26
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://namata.ru
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://namata.ru/extensions/badoonoads
URL della Pagina di Aiuto http://namata.ru/support/thanksforinstall
Lingue Supportate 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\/*"
    ]
}