Ultimate Profanity Filter
The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web.
Ultimate Profanity Filter क्या है?
Ultimate Profanity Filter azureappteam द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Ultimate Profanity Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The ultimate profanity filter for browsing the web! I made this after a long time browsing Reddit, and really wanted a Reddit profanity filter so I could stop seeing the HUGE amount of profanity that's on there. The great thing about this extension is that it filters out profanity on other sites, too! I will be updating this with more features in the future; top ones on my list include: - add your own blacklist of words to filter - right-click on a word to blacklist it - exploring technology to filter out profanity in images (for example, this will NOT filter out profanity others save in a picture) Thank you! I look forward to sharing a cleaner web with you :) Icon is based on "Clean" by asianson.design from the Noun Project Changelog: - Feb 2023: fixing an issue with "dic*" catching too many things that aren't profanity - May 2022: applied to titles, and added a delay on reddit to catch comments as they load
एक्सटेंशन की मूल जानकारी
नाम | Ultimate Profanity Filter |
ID | odkehbpiooalbdgdpcnoohalpmbigfbc |
आधिकारिक URL | https://chromewebstore.google.com/detail/ultimate-profanity-filter/odkehbpiooalbdgdpcnoohalpmbigfbc |
विवरण | The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web. |
फ़ाइल का आकार | 6.33 KB |
स्थापना संख्या | 118 |
वर्तमान संस्करण | 0.4.1 |
अंतिम अपडेट | 2023-02-25 |
प्रकाशन तिथि | 2017-11-08 |
रेटिंग | 2.00/5 कुल 7 रेटिंग्स |
डेवलपर | azureappteam |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ultimate Profanity Filter", "version": "0.4.1", "description": "The ultimate profanity filter out there. Designed for browsing reddit and the rest of the web.", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/*" ], "js": [ "content_script_reddit.js" ], "run_at": "document_idle" }, { "matches": [ "*:\/\/*\/*" ], "exclude_matches": [ "*:\/\/*.reddit.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle" } ] } |