Youtube hide watched

Hide watched videos on youtube

What is Youtube hide watched?

Youtube hide watched is a Chrome extension developed by gkshink, and its main feature is "Hide watched videos on youtube".

Extension Screenshots

screenshot

Download Youtube hide watched Extension CRX File

Download Youtube hide watched extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension can hide watched videos from your feed page.

It has two modes: make watched videos semitransparent and hide them at all.                    

Extension Basic Information

Name Youtube hide watched Youtube hide watched
ID cnibhadcgbichplollgpdnnhjbgflmej
Official URL https://chrome.google.com/webstore/detail/youtube-hide-watched/cnibhadcgbichplollgpdnnhjbgflmej
Description Hide watched videos on youtube
File Size 31.02 KB
Installation Count 57
Current Version 1.1
Last Updated 2021-03-07
Publish Date 2021-02-28
Rating 3.00/5 Total 2 Ratings
Developer gkshink
Email [email protected]
Payment Type free
Extension Website https://github.com/gkshi/youtube-chrome-extension
Help Page URL https://github.com/gkshi/youtube-chrome-extension
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube hide watched",
    "description": "Hide watched videos on youtube",
    "author": "George Shinkarev ",
    "version": "1.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/get_started16.png",
            "32": "\/images\/get_started32.png",
            "48": "\/images\/get_started48.png",
            "128": "\/images\/get_started128.png"
        }
    },
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    },
    "options_page": "options.html"
}