No Spoilers

Hide all spoiler content from youtube.

No Spoilers là gì?

No Spoilers là một tiện ích mở rộng Chrome được phát triển bởi grayhathacks10, và tính năng chính của nó là "Hide all spoiler content from youtube.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng No Spoilers

Tải xuống các tệp mở rộng No Spoilers dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension lets you add keywords based on which it blurs video cards from youtube. This helps you avoid spoilers and enjoy your youtube experience. You can still choose to watch the blurred video by changing toogling it's visibility.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên No Spoilers No Spoilers
ID kfbhhaallccnekmpojknfjblchllocgb
URL Chính Thức https://chromewebstore.google.com/detail/no-spoilers/kfbhhaallccnekmpojknfjblchllocgb
Mô tả Hide all spoiler content from youtube.
Kích Thước Tệp 27.09 KB
Số Lần Cài Đặt 105
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2022-05-12
Ngày Phát Hành 2022-05-09
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển grayhathacks10
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/GrayHat12/no-spoilers
URL Trang Trợ Giúp https://github.com/GrayHat12/no-spoilers
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "No Spoilers",
    "offline_enabled": true,
    "description": "Hide all spoiler content from youtube.",
    "action": {
        "default_title": "No Spoilers",
        "default_popup": ".\/html\/popup.html"
    },
    "version": "1.0.2",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                ".\/js\/youtube.js"
            ]
        }
    ],
    "background": {
        "service_worker": ".\/js\/background.js"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": ".\/assets\/icon16.png",
        "48": ".\/assets\/icon48.png",
        "128": ".\/assets\/icon128.png"
    }
}