Seen That! For YouTube

Hides YouTube's recommended videos if you have already watched them!

什麼是Seen That! For YouTube?

Seen That! For YouTube是由Arun Sundaram開發的Chrome擴展程式,該擴展的主要功能是“Hides YouTube's recommended videos if you have already watched them!”。

擴展截圖

screenshot
screenshot
screenshot

下載Seen That! For YouTube擴展crx文件

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

擴展使用說明

                        Are you sick of seeing recommendations for YouTube videos you have already watched or started, but decided not to finish?

SeenThat! uses YouTube's watch history to hide suggestions for videos that you've already seen.

This extension REQUIRES you to be signed into YouTube and to have watch history unpaused.
You can toggle this at https://www.youtube.com/feed/history. 

You can customize hiding from the following pages with one simple menu:
- Home Page
- Watch Page
- Subscriptions
- Channel Videos
- Search Results

You can further filter the videos by only hiding videos that you've watched past a certain percentage or by hiding playlist recommendations.

SeenThat! does not collect any user data, but does need your YouTube account's watch history to be active to work. You will know that this is the case if you can see the red bar at the bottom of thumbnails linking to videos you've already started to watch.                    

擴展基本資訊

名稱 Seen That! For YouTube Seen That! For YouTube
ID nlhibcelmcakfgbdmeinlojopoadhnfe
官方網址 https://chromewebstore.google.com/detail/seen-that-for-youtube/nlhibcelmcakfgbdmeinlojopoadhnfe
簡介 Hides YouTube's recommended videos if you have already watched them!
檔案大小 40.18 KB
安裝次數 130
目前版本 1.0
更新時間 2021-04-20
上架時間 2021-04-20
評分 3.75/5 共 4 次評分
開發者 Arun Sundaram
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Seen That! For YouTube",
    "version": "1.0",
    "description": "Hides YouTube's recommended videos if you have already watched them!",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/seen_that16.png",
            "32": "images\/seen_that32.png",
            "48": "images\/seen_that48.png",
            "128": "images\/seen_that128.png"
        }
    },
    "icons": {
        "16": "images\/seen_that16.png",
        "32": "images\/seen_that32.png",
        "48": "images\/seen_that48.png",
        "128": "images\/seen_that128.png"
    },
    "manifest_version": 2
}