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.

Vad är Badoo without ads?

Badoo without ads är en Chrome-tillägg utvecklad av https://namata.ru, och dess huvudfunktion är "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.".

Tilläggsskärmbilder

screenshot

Ladda ner Badoo without ads-förlängningens CRX-fil

Ladda ner Badoo without ads-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Badoo without ads Badoo without ads
ID negdlffpkdmjjjbeebnibofbkiclejkd
Officiell webbadress https://chromewebstore.google.com/detail/badoo-without-ads/negdlffpkdmjjjbeebnibofbkiclejkd
Beskrivning This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.
Filstorlek 254 KB
Antal Installationer 147
Aktuell Version 1.5
Senast Uppdaterad 2020-07-08
Publiceringsdatum 2020-03-26
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://namata.ru
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://namata.ru/extensions/badoonoads
Hjälpsida URL http://namata.ru/support/thanksforinstall
Stödda Språk 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\/*"
    ]
}