Better YouTube Subscriptions

Hide YouTube Shorts and videos you have already watched from your subscriptions feed !

Better YouTube Subscriptions là gì?

Better YouTube Subscriptions là một tiện ích mở rộng Chrome được phát triển bởi OptiSearch, và tính năng chính của nó là "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Better YouTube Subscriptions 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

                        Better YouTube Subscriptions is a simple browser extension that allows you to hide the YouTube Shorts videos that are polluting your subscriptions feed.
It can also hide the videos that you have already watched.

Of course, you can make them appear again with a simple click of a button.

In short, it cleans your YouTube Subscriptions feed to only show what you want to watch !                    

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

Tên Better YouTube Subscriptions Better YouTube Subscriptions
ID hbopiiffeioghjoeakkknpcealnlomod
URL Chính Thức https://chromewebstore.google.com/detail/better-youtube-subscripti/hbopiiffeioghjoeakkknpcealnlomod
Mô tả Hide YouTube Shorts and videos you have already watched from your subscriptions feed !
Kích Thước Tệp 28 KB
Số Lần Cài Đặt 37
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-02-26
Ngày Phát Hành 2022-09-29
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển OptiSearch
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://dj0ulo.github.io/OptiSearch/privacy.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better YouTube Subscriptions",
    "version": "1.0",
    "manifest_version": 3,
    "description": "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !",
    "icons": {
        "128": "images\/icon_128.png",
        "1024": "images\/icon_1024.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "src\/pop-up\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "src\/style.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "src\/settings.js",
                "src\/utils.js",
                "src\/content_script.js"
            ]
        }
    ]
}