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 07mcteaguepet द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension removes NSFW items from reddit or makes them the only ones visible (your choice)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Unnoficial Reddit NSFW Filter for redesign एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |