YouTube Profanity Filter
(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.
YouTube Profanity Filter क्या है?
YouTube Profanity Filter @atechdad द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Profanity Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The YouTube Profanity Filter was created to provide a better way to block unwanted content. This plugin uses the video's closed captions to identify bad words and blocks the video if the language is found. Created by @atechdad originally for personal use. YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | dnglegpjmiodocfnhbbmlkabckglpmhf |
आधिकारिक URL | https://chrome.google.com/webstore/detail/youtube-profanity-filter/dnglegpjmiodocfnhbbmlkabckglpmhf |
विवरण | (Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video. |
फ़ाइल का आकार | 14.2 KB |
स्थापना संख्या | 779 |
वर्तमान संस्करण | 0.1.0.1 |
अंतिम अपडेट | 2017-01-04 |
प्रकाशन तिथि | 2017-01-04 |
रेटिंग | 3.50/5 कुल 4 रेटिंग्स |
डेवलपर | @atechdad |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Profanity Filter", "description": "(Experimental) This extension blocks YouTube content based on profanity. Closed Captions must be available for the video.", "version": "0.1.0.1", "homepage_url": "https:\/\/twitter.com\/atechdad", "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "activeTab", "https:\/\/*.youtube.com\/", "contextMenus" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ] } |