Youtube Title Blacklist
Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.
Youtube Title Blacklist क्या है?
Youtube Title Blacklist http://creativebuilds.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Title Blacklist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A simple extension designed to block videos from showing up in your home feed on YouTube that contain certain keywords that you set. Useful for hiding content you don't want kids to be seeing.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | gcmgilkgahoblmnolplncmmkhmmbddfn |
आधिकारिक URL | https://chrome.google.com/webstore/detail/youtube-title-blacklist/gcmgilkgahoblmnolplncmmkhmmbddfn |
विवरण | Block videos from showing up in your home feed on YouTube that contain certain keywords that you set. |
फ़ाइल का आकार | 296 KB |
स्थापना संख्या | 423 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2020-12-12 |
प्रकाशन तिथि | 2020-12-09 |
रेटिंग | 4.83/5 कुल 6 रेटिंग्स |
डेवलपर | http://creativebuilds.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Title Blacklist", "version": "1.0.2", "description": "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.", "icons": { "16": "assets\/icons\/icon16.png", "24": "assets\/icons\/icon24.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "browser_action": { "default_icon": "assets\/icons\/icon16.png", "default_popup": "popup\/index.html", "default_title": "Youtube Title Blacklist - Settings" }, "content_scripts": [ { "js": [ "content\/index.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "background": { "scripts": [ "background\/index.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "assets\/icons\/*.png" ], "permissions": [ "activeTab", "storage" ] } |