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 - это расширение Chrome, разработанное http://creativebuilds.io, и его основная функция - "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.".
Снимки экрана расширения
Скачать файл CRX расширения Youtube Title Blacklist
Скачайте файлы расширений Youtube Title Blacklist в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" ] } |