NSFW Filter

This extension allows the user to view only NSFW posts on Reddit.

NSFW Filter là gì?

NSFW Filter là một tiện ích mở rộng Chrome được phát triển bởi NSFWFilter, và tính năng chính của nó là "This extension allows the user to view only NSFW posts on Reddit.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng NSFW Filter 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

                        An NSFW FIlter that allows users to see NSFW content on Reddit.                    

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

Tên NSFW Filter NSFW Filter
ID kcbhaaeppldaemnnbpoaloiogmenibmh
URL Chính Thức https://chrome.google.com/webstore/detail/nsfw-filter/kcbhaaeppldaemnnbpoaloiogmenibmh
Mô tả This extension allows the user to view only NSFW posts on Reddit.
Kích Thước Tệp 7.94 KB
Số Lần Cài Đặt 425
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2017-10-24
Ngày Phát Hành 2017-10-24
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển NSFWFilter
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NSFW Filter",
    "description": "This extension allows the user to view only NSFW posts on Reddit.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.reddit.com\/*"
            ],
            "js": [
                ".\/nsfw.js"
            ],
            "run_at": "document_end"
        }
    ]
}