Unnoficial Reddit NSFW Filter for redesign

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

Apa itu Unnoficial Reddit NSFW Filter for redesign?

Unnoficial Reddit NSFW Filter for redesign adalah ekstensi Chrome yang dikembangkan oleh 07mcteaguepet, dan fitur utamanya adalah "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Unnoficial Reddit NSFW Filter for redesign

Unduh file ekstensi Unnoficial Reddit NSFW Filter for redesign dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
URL Resmi https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam
Deskripsi This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
Ukuran File 38.09 KB
Jumlah Instalasi 38
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-05-04
Tanggal Publikasi 2018-05-04
Penilaian 1.00/5 Total 3 Penilaian
Pengembang 07mcteaguepet
Email [email protected]
Tipe Pembayaran in_app
Situs Ekstensi https://github.com/PeterMcteague/RedditNSFWToggler
URL Halaman Bantuan https://github.com/PeterMcteague/RedditNSFWToggler/issues
Bahasa yang Didukung 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"
    }
}