Reddit Filter
Filter subreddits from your reddit feed.
Cos'è Reddit Filter?
Reddit Filter è un'estensione di Chrome sviluppata da prudhvirajs, e la sua funzione principale è "Filter subreddits from your reddit feed.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit Filter
Scarica i file di estensione Reddit Filter 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
Filter subreddits from your reddit feed. If you don't want to see certain subreddits in your feeds, click a simple close button on top right corner of the post to filter any future posts from the subreddit. You can also manage the subreddits being filtered. This also remove any promoted posts (ads).
Informazioni di Base sull'Estensione
Nome | Reddit Filter |
ID | eifldojanodifhgcaodhilahkmcbojji |
URL Ufficiale | https://chromewebstore.google.com/detail/reddit-filter/eifldojanodifhgcaodhilahkmcbojji |
Descrizione | Filter subreddits from your reddit feed. |
Dimensione del File | 43.83 KB |
Conteggio Installazioni | 111 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2021-06-01 |
Data di Pubblicazione | 2021-05-31 |
Valutazione | 3.29/5 Totale 7 Valutazioni |
Sviluppatore | prudhvirajs |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reddit Filter", "description": "Filter subreddits from your reddit feed.", "version": "0.1", "permissions": [ "storage" ], "browser_action": [], "content_scripts": [ { "matches": [ "https:\/\/www.reddit.com\/r\/popular\/", "https:\/\/www.reddit.com\/", "https:\/\/www.reddit.com\/*" ], "js": [ "content.js", "jquery-3.6.0.min.js" ], "css": [ "content.css" ], "run_at": "document_end" } ], "icons": { "16": "\/images\/RF16.png", "32": "\/images\/RF32.png", "48": "\/images\/RF48.png", "128": "\/images\/RF128.png" }, "manifest_version": 2 } |