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.

Что такое Badoo without ads?

Badoo without ads - это расширение Chrome, разработанное https://namata.ru, и его основная функция - "This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Badoo without ads

Скачайте файлы расширений Badoo without ads в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Badoo without ads Badoo without ads
ID negdlffpkdmjjjbeebnibofbkiclejkd
Официальный URL https://chromewebstore.google.com/detail/badoo-without-ads/negdlffpkdmjjjbeebnibofbkiclejkd
Описание This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.
Размер файла 254 KB
Количество установок 147
Текущая Версия 1.5
Последнее Обновление 2020-07-08
Дата публикации 2020-03-26
Рейтинг 5.00/5 Всего 1 оценок
Разработчик https://namata.ru
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://namata.ru/extensions/badoonoads
URL страницы помощи http://namata.ru/support/thanksforinstall
Поддерживаемые языки 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\/*"
    ]
}