NSFW Filter

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

什麼是NSFW Filter?

NSFW Filter是由NSFWFilter開發的Chrome擴展程式,該擴展的主要功能是“This extension allows the user to view only NSFW posts on Reddit.”。

擴展截圖

screenshot
screenshot

下載NSFW Filter擴展crx文件

下載NSFW Filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 NSFW Filter NSFW Filter
ID kcbhaaeppldaemnnbpoaloiogmenibmh
官方網址 https://chrome.google.com/webstore/detail/nsfw-filter/kcbhaaeppldaemnnbpoaloiogmenibmh
簡介 This extension allows the user to view only NSFW posts on Reddit.
檔案大小 7.94 KB
安裝次數 425
目前版本 0.1
更新時間 2017-10-24
上架時間 2017-10-24
評分 3.50/5 共 2 次評分
開發者 NSFWFilter
付費類型 free
支援的語言 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"
        }
    ]
}