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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 07mcteaguepet, και η κύρια λειτουργία του είναι "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Unnoficial Reddit NSFW Filter for redesign
Λήψη αρχείων επέκτασης 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 |
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 |
Ηλεκτρονικό ταχυδρομείο | [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" } } |