Simple AdBlock

Removes popular advertisement blocks from any website!

什么是Simple AdBlock?

Simple AdBlock是由alexleon.solutions开发的Chrome扩展程序,该扩展的主要功能是“Removes popular advertisement blocks from any website!”。

扩展截图

screenshot

下载Simple AdBlock扩展crx文件

下载Simple AdBlock扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The extension will delete advertisements and banners from various ad companies.
The extension will simply scan the page from any known banners to quickly remove them.                    

扩展基本信息

名称 Simple AdBlock Simple AdBlock
ID fhaealjjameonplhmmjcmpgfgidiefka
官方URL https://chrome.google.com/webstore/detail/simple-adblock/fhaealjjameonplhmmjcmpgfgidiefka
简介 Removes popular advertisement blocks from any website!
文件大小 13.76 KB
安装次数 3,851
当前版本 1
更新时间 2022-11-29
上架时间 2022-11-29
开发者 alexleon.solutions
电子邮箱 [email protected]
付费类型 free
扩展官网 https://home.xzxoughtanot.xyz/
帮助页面URL https://home.xzxoughtanot.xyz/contact.html
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "128.png",
        "default_title": "Simple AdBlock"
    },
    "description": "Removes popular advertisement blocks from any website!",
    "icons": {
        "128": "128.png"
    },
    "manifest_version": 3,
    "name": "Simple AdBlock",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}