reddit-adblock
An extenstion that blocks ads on reddit!
什么是reddit-adblock?
reddit-adblock是由Venkat Naidu开发的Chrome扩展程序,该扩展的主要功能是“An extenstion that blocks ads on reddit!”。
扩展截图
下载reddit-adblock扩展crx文件
下载reddit-adblock扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        Just hides all the promotions you see while scrolling reddit.
It just hides them. That's all.                     扩展基本信息
| 名称 |   |  
| ID | mhgkomjopimfbhhiigdkielolbniipdp | 
| 官方URL | https://chromewebstore.google.com/detail/reddit-adblock/mhgkomjopimfbhhiigdkielolbniipdp | 
| 简介 | An extenstion that blocks ads on reddit! | 
| 文件大小 | 1.04 MB | 
| 安装次数 | 47 | 
| 当前版本 | 1.0 | 
| 更新时间 | 2022-05-24 | 
| 上架时间 | 2022-05-23 | 
| 开发者 | Venkat Naidu | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 支持的语言 | en-US | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "reddit-adblock",
    "description": "An extenstion that blocks ads on reddit!",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ]
}  |  |