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.

Co to jest Badoo without ads?

Badoo without ads to rozszerzenie Chrome opracowane przez https://namata.ru, a jego główną funkcją jest „This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Badoo without ads

Pobierz pliki rozszerzeń Badoo without ads w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Badoo without ads Badoo without ads
ID negdlffpkdmjjjbeebnibofbkiclejkd
Oficjalny URL https://chromewebstore.google.com/detail/badoo-without-ads/negdlffpkdmjjjbeebnibofbkiclejkd
Opis This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.
Rozmiar pliku 254 KB
Liczba instalacji 147
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2020-07-08
Data Publikacji 2020-03-26
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://namata.ru
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://namata.ru/extensions/badoonoads
Adres URL Strony Pomocy http://namata.ru/support/thanksforinstall
Obsługiwane Języki 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\/*"
    ]
}