Clean Stream
Allows you to filter Netflix.
Clean Stream क्या है?
Clean Stream yolodevelopers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to filter Netflix."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Clean Stream एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension automatically mutes Netflix when profanity is spoken. Clean stream generates a list of the profanity contained within a movie and allows you to choose what language you want filtered out before the movie begins. Clean Stream uses a customizable list of profanity to filter movies. The captions need to be on when the video starts in order for it to work. Filters are currently being added that will allow certain scenes to be skipped in addition to muting language.
एक्सटेंशन की मूल जानकारी
नाम | Clean Stream |
ID | cppacmdbokpnibcconbcniibodcfgdba |
आधिकारिक URL | https://chromewebstore.google.com/detail/clean-stream/cppacmdbokpnibcconbcniibodcfgdba |
विवरण | Allows you to filter Netflix. |
फ़ाइल का आकार | 25.76 KB |
स्थापना संख्या | 156 |
वर्तमान संस्करण | 1.0.9 |
अंतिम अपडेट | 2017-06-29 |
प्रकाशन तिथि | 2017-06-29 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | yolodevelopers |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Clean Stream", "description": "Allows you to filter Netflix.", "version": "1.0.9", "permissions": [ "tabs", "webNavigation", "*:\/\/*.netflix.com\/watch\/*", "*:\/\/*.dropbox.com\/*", "*:\/\/docs.google.com\/*", "*:\/\/accounts.google.com\/*", "*:\/\/drive.google.com\/*", "activeTab", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/www.netflix.com\/watch\/*" ], "js": [ "filter.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "16": "images\/icon16.png", "128": "images\/icon128.png" }, "default_popup": "popup.html", "default_title": "Filter Options" }, "icons": { "16": "images\/icon16.png", "128": "images\/icon128.png" } } |