YouHide
Hides viewed videos on Youtube's subscriptions page
Co to jest YouHide?
YouHide to rozszerzenie Chrome opracowane przez Maxime Cousinou, a jego główną funkcją jest „Hides viewed videos on Youtube's subscriptions page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouHide
Pobierz pliki rozszerzeń YouHide 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
Automatically hides viewed and partially viewed items and shorts.
Alternate between hidden, quasi-transparent and original display. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
| Oficjalny URL | https://chromewebstore.google.com/detail/youhide/gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
| Opis | Hides viewed videos on Youtube's subscriptions page |
| Rozmiar pliku | 10.28 KB |
| Liczba instalacji | 336 |
| Aktualna Wersja | 2.0.2 |
| Ostatnia Aktualizacja | 2024-01-13 |
| Data Publikacji | 2017-09-08 |
| Ocena | 3.88/5 Łącznie 17 Oceny |
| Deweloper | Maxime Cousinou |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouHide",
"description": "Hides viewed videos on Youtube's subscriptions page",
"version": "2.0.2",
"icons": {
"128": "icon.png"
},
"action": {
"default_icon": {
"16": "icon-hidden.png",
"38": "[email protected]"
},
"default_title": "Toggle"
},
"permissions": [
"tabs",
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"injected.js"
],
"css": [
"injected.css"
]
}
]
} | |