blurry
A spoiler blocker for YouTube
Что такое blurry?
blurry - это расширение Chrome, разработанное David, и его основная функция - "A spoiler blocker for YouTube".
Снимки экрана расширения
Скачать файл CRX расширения blurry
Скачайте файлы расширений blurry в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Write up a list of spoiler-related words like movie titles, characters, or channel names, and start browsing YouTube spoiler free!
How it works: Manage a list of spoilers in the extension's popup, and any video containing a spoiler in the title or channel name will be blurred out. YouTube's UI remains exactly the same (video grids and lists look the same as before).
Features:
- ✍ Editing, deleting, adding, sorting, and searching your spoilers are all supported in the popup for easy management
- 🙅 Videos containing spoilers are blurred out
- 👀 Hover over a blurred video for a few seconds to peek at the content
This extension isn't limited to blocking spoilers though, use it to block any unwanted content! Основная информация о расширении
| Название | |
| ID | jafdkaikhbhcjjeefdmogkmngonndhei |
| Официальный URL | https://chromewebstore.google.com/detail/blurry/jafdkaikhbhcjjeefdmogkmngonndhei |
| Описание | A spoiler blocker for YouTube |
| Размер файла | 150 KB |
| Количество установок | 98 |
| Текущая Версия | 1.0.0 |
| Последнее Обновление | 2022-01-09 |
| Дата публикации | 2021-12-19 |
| Рейтинг | 4.50/5 Всего 2 оценок |
| Разработчик | David |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/dhuang52/see-no-evil-chrome-extension |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "blurry",
"description": "A spoiler blocker for YouTube",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/",
"*:\/\/*.youtube.com\/watch?*",
"*:\/\/*.youtube.com\/results?*",
"*:\/\/*.youtube.com\/c*"
],
"js": [
"youtube.bundle.js"
],
"css": [
"youtube.css"
]
}
],
"content_security_policy": {
"extension_pages": "default-src 'self'; frame-ancestors 'none'; style-src 'self' 'sha256-DjMTx6ObcjL680ffkLdKKQWSyoPjBpYMGIyHmRjA0Hc=' 'sha256-47DEQpj8HBSa+\/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=' 'sha256-Oj0qszI9MewWF0PgqA6ajeeXBsOYEx6xWBsFZ98UGoc=' 'sha256-DOu86drLfwUr1Wcsx\/wxfqAogK7tFvJGjVmF\/300H\/M=';"
},
"version": "1.0.0",
"manifest_version": 3
} | |