blurry

A spoiler blocker for YouTube

blurry क्या है?

blurry David द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A spoiler blocker for YouTube"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में blurry एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}