YouTube Audio Filtering

Filter out swearwords you hear on YouTube videos based on your own preferences!

YouTube Audio Filtering क्या है?

YouTube Audio Filtering NextGen Filtering द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filter out swearwords you hear on YouTube videos based on your own preferences!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Audio Filtering एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        YAF mutes swearwords on YouTube videos. Choose which words you don't want to hear and let YAF take care of the rest! 

How YAF works:

- YAF uses the closed caption files attached to YouTube videos to find swearwords and their timings.
- YAF will mute the video when the words you have selected show up in the caption files.
- YAF is only as good as the caption files for each video. If the caption timings are off, then YAF may not perform well.
- If there are no caption files attached to the video, YAF will be unavailable for that video until captions are added.
- YAF only works on youtube.com videos.                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Audio Filtering YouTube Audio Filtering
ID ggpledkgjmbhndokhnakcgmnbgdenfgi
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-audio-filtering/ggpledkgjmbhndokhnakcgmnbgdenfgi
विवरण Filter out swearwords you hear on YouTube videos based on your own preferences!
फ़ाइल का आकार 2.2 MB
स्थापना संख्या 747
वर्तमान संस्करण 1.4
अंतिम अपडेट 2019-03-02
प्रकाशन तिथि 2019-03-01
रेटिंग 3.50/5 कुल 14 रेटिंग्स
डेवलपर NextGen Filtering
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Audio Filtering",
    "description": "Filter out swearwords you hear on YouTube videos based on your own preferences!",
    "version": "1.4",
    "background": {
        "scripts": [
            "js\/angular.min.js",
            "\/data\/xml2json.js",
            "js\/jquery-3.1.1.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com\/ https:\/\/s3-us-west-2.amazonaws.com\/ https:\/\/cdnjs.cloudflare.com\/; object-src 'self'",
    "options_page": "index.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "css\/content.css",
                "css\/icon.css"
            ],
            "html": [
                "html\/background.html"
            ],
            "js": [
                "js\/angular.min.js",
                "js\/jquery-3.1.1.js",
                "\/data\/xml2json.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "\/img\/logo_YAF_ICON.png",
        "48": "\/img\/logo_YAF_ICON.png",
        "128": "\/img\/YAF_Logo_with_text.png"
    },
    "web_accessible_resources": [
        "\/html\/options_container.html",
        "\/index.html",
        "\/img\/logo_YAF_ICON.png",
        "\/img\/YAF_Logo_with_text.png",
        "css\/icon.css"
    ],
    "page_action": {
        "default_icon": "img\/logo_YAF_ICON.png",
        "default_popup": "html\/popup.html",
        "default_title": "Youtube Audio Filtering"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/ajax.googleapis.com\/",
        "declarativeContent",
        "storage"
    ]
}