Youtube hide watched

Hide watched videos on youtube

Co to jest Youtube hide watched?

Youtube hide watched to rozszerzenie Chrome opracowane przez gkshink, a jego główną funkcją jest „Hide watched videos on youtube”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Youtube hide watched

Pobierz pliki rozszerzeń Youtube hide watched w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension can hide watched videos from your feed page.

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

Podstawowe informacje o rozszerzeniu

Nazwa Youtube hide watched Youtube hide watched
ID cnibhadcgbichplollgpdnnhjbgflmej
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-hide-watched/cnibhadcgbichplollgpdnnhjbgflmej
Opis Hide watched videos on youtube
Rozmiar pliku 31.02 KB
Liczba instalacji 57
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2021-03-07
Data Publikacji 2021-02-28
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper gkshink
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/gkshi/youtube-chrome-extension
Adres URL Strony Pomocy https://github.com/gkshi/youtube-chrome-extension
Obsługiwane Języki 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"
}