YouTube Customizer
Customize your YouTube.
Co to jest YouTube Customizer?
YouTube Customizer to rozszerzenie Chrome opracowane przez Nibito, a jego główną funkcją jest „Customize your YouTube.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Customizer
Pobierz pliki rozszerzeń YouTube Customizer 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
Improve your video watching experience. Hide unnecessary elements on the page or within the player with this easy-to-use extension. With this extension now you can: - hide 'Share', 'Info', 'Watch more' buttons, - hide 'More videos' panel - make the title smaller, - enable full-screen mode on pages without this option. On YouTube page you can: - hide up next panel and comments, - disable autoplay. More options in the future.
Podstawowe informacje o rozszerzeniu
Nazwa | YouTube Customizer |
ID | jjdpifbhmmdnkmndomeokjgnilcimoaj |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-customizer/jjdpifbhmmdnkmndomeokjgnilcimoaj |
Opis | Customize your YouTube. |
Rozmiar pliku | 41.9 KB |
Liczba instalacji | 585 |
Aktualna Wersja | 1.4.1 |
Ostatnia Aktualizacja | 2023-10-09 |
Data Publikacji | 2021-06-08 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | Nibito |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://nibito.com/?ref=youtube_customizer |
Adres URL Strony Pomocy | https://nibito.com |
Adres URL Strony Polityki Prywatności | https://nibito.com/privacy-policy?ref=chrome-store |
Obsługiwane Języki | en,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Customizer", "version": "1.4.1", "description": "__MSG_extensionDescription__", "default_locale": "en", "icons": { "16": "resources\/icons\/icon_16.png", "18": "resources\/icons\/icon_18.png", "19": "resources\/icons\/icon_19.png", "32": "resources\/icons\/icon_32.png", "48": "resources\/icons\/icon_48.png", "64": "resources\/icons\/icon_64.png", "128": "resources\/icons\/icon_128.png" }, "browser_action": { "default_icon": { "16": "resources\/icons\/icon_16.png", "18": "resources\/icons\/icon_18.png", "19": "resources\/icons\/icon_19.png", "32": "resources\/icons\/icon_32.png", "48": "resources\/icons\/icon_48.png" }, "default_title": "YouTube Customizer", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "all_frames": true, "js": [ "shared.js", "inject.js" ], "css": [ "resources\/skin\/injectStyle.css" ] } ], "permissions": [ "storage" ] } |