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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides YouTube's recommended videos if you have already watched them!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Seen That! For YouTube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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
}