Unnoficial Reddit NSFW Filter for redesign

This extension removes NSFW items from reddit or makes them the only ones visible (your choice).

什麼是Unnoficial Reddit NSFW Filter for redesign?

Unnoficial Reddit NSFW Filter for redesign是由07mcteaguepet開發的Chrome擴展程式,該擴展的主要功能是“This extension removes NSFW items from reddit or makes them the only ones visible (your choice).”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Unnoficial Reddit NSFW Filter for redesign擴展crx文件

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

擴展使用說明

                        This extension allows you to choose to hide NSFW items from reddit or make them the only ones visible, or neither.                    

擴展基本資訊

名稱 Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
官方網址 https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam
簡介 This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
檔案大小 38.09 KB
安裝次數 38
目前版本 1.0
更新時間 2018-05-04
上架時間 2018-05-04
評分 1.00/5 共 3 次評分
開發者 07mcteaguepet
電子郵箱 [email protected]
付費類型 in_app
擴展官網 https://github.com/PeterMcteague/RedditNSFWToggler
說明頁面URL https://github.com/PeterMcteague/RedditNSFWToggler/issues
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unnoficial Reddit NSFW Filter for redesign",
    "version": "1.0",
    "options_page": "src\/options\/options.html",
    "options_ui": {
        "page": "src\/options\/options.html",
        "open_in_tab": false
    },
    "manifest_version": 2,
    "description": "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).",
    "author": "Peter McTeague",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.reddit.com\/*",
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "options",
        "popup": "src\/options\/options.html",
        "default_popup": "src\/options\/options.html"
    }
}