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是由https://namata.ru开发的Chrome扩展程序,该扩展的主要功能是“This extension removes ads from the Badoo site. All information on the replenishment of their account, gifts and so on is removed.”。

扩展截图

screenshot

下载Badoo without ads扩展crx文件

下载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\/*"
    ]
}