Unnoficial Reddit NSFW Filter for redesign
This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
Cos'è Unnoficial Reddit NSFW Filter for redesign?
Unnoficial Reddit NSFW Filter for redesign è un'estensione di Chrome sviluppata da 07mcteaguepet, e la sua funzione principale è "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Unnoficial Reddit NSFW Filter for redesign
Scarica i file di estensione Unnoficial Reddit NSFW Filter for redesign in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension allows you to choose to hide NSFW items from reddit or make them the only ones visible, or neither.
Informazioni di Base sull'Estensione
Nome | Unnoficial Reddit NSFW Filter for redesign |
ID | jjnnbblbdeabcdgifodkjpalefmgidam |
URL Ufficiale | https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam |
Descrizione | This extension removes NSFW items from reddit or makes them the only ones visible (your choice). |
Dimensione del File | 38.09 KB |
Conteggio Installazioni | 38 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2018-05-04 |
Data di Pubblicazione | 2018-05-04 |
Valutazione | 1.00/5 Totale 3 Valutazioni |
Sviluppatore | 07mcteaguepet |
[email protected] | |
Tipo di Pagamento | in_app |
Sito Web dell'Estensione | https://github.com/PeterMcteague/RedditNSFWToggler |
URL della Pagina di Aiuto | https://github.com/PeterMcteague/RedditNSFWToggler/issues |
Lingue Supportate | 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" } } |