Youtube Hider
This is a Chrome extension to hide videos and images on YouTube.
Co to jest Youtube Hider?
Youtube Hider to rozszerzenie Chrome opracowane przez Miri Ahn, a jego główną funkcją jest „This is a Chrome extension to hide videos and images on YouTube.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Youtube Hider
Pobierz pliki rozszerzeń Youtube Hider 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
You can toggle a visibility of a group of Youtube elements on the list below, respectively: - Video - Video thumbnail - User profile photo Update 1.1 (2019/11/25) - Added a button to enable or disable all checkboxes.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | cnaimccmiafebfliaiefkdfmdffgmjph |
Oficjalny URL | https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph |
Opis | This is a Chrome extension to hide videos and images on YouTube. |
Rozmiar pliku | 8.85 KB |
Liczba instalacji | 60 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2019-11-29 |
Data Publikacji | 2019-11-29 |
Ocena | 4.25/5 Łącznie 4 Oceny |
Deweloper | Miri Ahn |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/kameru/youtube-hider/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Hider", "version": "1.1", "description": "This is a Chrome extension to hide videos and images on YouTube.", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "hidingController.js" ] } ], "web_accessible_resources": [ "hide_thumb.css", "hide_video.css", "hide_icon.css", "popup.js", "hidingController.js" ], "permissions": [ "activeTab", "storage", "declarativeContent" ], "page_action": { "default_icon": "images\/hide.png", "default_popup": "popup.html" }, "manifest_version": 2 } |