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
公式URL 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
Eメール [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"
    }
}