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.

Hvad er Badoo without ads?

Badoo without ads er en Chrome-udvidelse udviklet af https://namata.ru, og dens hovedfunktion er "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.".

Udvidelsesskærmbilleder

screenshot

Download Badoo without ads-udvidelses-CRX-fil

Download Badoo without ads-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Badoo without ads Badoo without ads
ID negdlffpkdmjjjbeebnibofbkiclejkd
Officiel URL https://chromewebstore.google.com/detail/badoo-without-ads/negdlffpkdmjjjbeebnibofbkiclejkd
Beskrivelse This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.
Filstørrelse 254 KB
Antal Installationer 147
Nuværende Version 1.5
Senest Opdateret 2020-07-08
Udgivelsesdato 2020-03-26
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler https://namata.ru
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://namata.ru/extensions/badoonoads
Hjælpeside-URL http://namata.ru/support/thanksforinstall
Understøttede Sprog 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\/*"
    ]
}