YouTube Watched Filter

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

什麼是YouTube Watched Filter?

YouTube Watched Filter是由MarkosApps開發的Chrome擴展程式,該擴展的主要功能是“Filter videos you have already seen on the YouTube search results page!”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載YouTube Watched Filter擴展crx文件

下載YouTube Watched Filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 YouTube Watched Filter YouTube Watched Filter
ID ljfallanjgncbpifopcppdepechonejh
官方網址 https://chromewebstore.google.com/detail/youtube-watched-filter/ljfallanjgncbpifopcppdepechonejh
簡介 Filter videos you have already seen on the YouTube search results page!
檔案大小 233 KB
安裝次數 508
目前版本 1.1.1
更新時間 2022-06-16
上架時間 2021-01-22
評分 3.33/5 共 3 次評分
開發者 MarkosApps
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/markorankovic/YouTube-Watched-Filter
隱私政策頁面URL https://github.com/markorankovic/YouTube-Watched-Filter/blob/main/privacy-policy
支援的語言 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
}