reddit-adblock

An extenstion that blocks ads on reddit!

reddit-adblock là gì?

reddit-adblock là một tiện ích mở rộng Chrome được phát triển bởi Venkat Naidu, và tính năng chính của nó là "An extenstion that blocks ads on reddit!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng reddit-adblock

Tải xuống các tệp mở rộng reddit-adblock dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Just hides all the promotions you see while scrolling reddit.
It just hides them. That's all.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên reddit-adblock reddit-adblock
ID mhgkomjopimfbhhiigdkielolbniipdp
URL Chính Thức https://chromewebstore.google.com/detail/reddit-adblock/mhgkomjopimfbhhiigdkielolbniipdp
Mô tả An extenstion that blocks ads on reddit!
Kích Thước Tệp 1.04 MB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-05-24
Ngày Phát Hành 2022-05-23
Nhà Phát Triển Venkat Naidu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}