YouTube Watched Filter

Filter videos you have already seen on the YouTube search results page!

YouTube Watched Filter là gì?

YouTube Watched Filter là một tiện ích mở rộng Chrome được phát triển bởi MarkosApps, và tính năng chính của nó là "Filter videos you have already seen on the YouTube search results page!".

Ả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 YouTube Watched Filter

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

                        Whenever a keyword is searched on YouTube, there is always a good chance that videos you have already clicked on pop up in the search results page. Would you prefer if you could easily choose to have those videos excluded from the results?

YouTube Watched Filter logs the videos you clicked on from the results page so that next time you make a YouTube search, you won't have to see the same video results.

You can choose whether you want this Chrome extension to filter the search page manually by pressing the filter button in the pop-up, or choose to filter them automatically specified in the options page. If you don't want the extension to log videos you click on from the results page, you can tick off enable in the pop-up. Additionally, you can also use the reversed button to do the opposite and filter out videos you haven't watched to only see those which you have watched.                    

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

Tên YouTube Watched Filter YouTube Watched Filter
ID ljfallanjgncbpifopcppdepechonejh
URL Chính Thức https://chromewebstore.google.com/detail/youtube-watched-filter/ljfallanjgncbpifopcppdepechonejh
Mô tả Filter videos you have already seen on the YouTube search results page!
Kích Thước Tệp 233 KB
Số Lần Cài Đặt 508
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2022-06-16
Ngày Phát Hành 2021-01-22
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển MarkosApps
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/markorankovic/YouTube-Watched-Filter
URL Trang Chính Sách Bảo Mật https://github.com/markorankovic/YouTube-Watched-Filter/blob/main/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Watched Filter",
    "version": "1.1.1",
    "description": "Filter videos you have already seen on the YouTube search results page!",
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/www.youtube.com\/*"
    ],
    "background": {
        "scripts": [
            "links.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": ".\/popup.html"
    },
    "options_page": ".\/options.html",
    "icons": {
        "16": ".\/LogoDesign16.png",
        "32": ".\/LogoDesign32.png",
        "48": ".\/LogoDesign48.png",
        "128": ".\/LogoDesign128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "links.js",
                "foreground.js"
            ],
            "all_frames": true
        }
    ],
    "manifest_version": 2
}