blurry

A spoiler blocker for YouTube

blurry란 무엇입니까?

blurry은(는) David에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A spoiler blocker for YouTube"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

blurry 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 blurry blurry
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
}