Zen YouTube: Distraction free youtube
Removes feed and recommendations from YouTube so that you can have a distraction free focused session
Co to jest Zen YouTube: Distraction free youtube?
Zen YouTube: Distraction free youtube to rozszerzenie Chrome opracowane przez Vishnu Gt, a jego główną funkcją jest „Removes feed and recommendations from YouTube so that you can have a distraction free focused session”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Zen YouTube: Distraction free youtube
Pobierz pliki rozszerzeń Zen YouTube: Distraction free youtube 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 helps you have a distraction free YouTube session by removing the recommendations and your home page feed so that you don't end up watching YouTube for hours.
Github Link: https://github.com/vishnugt/Zen-Youtube Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ibcpcdiajmfmkieocebkoiofgdbbecel |
| Oficjalny URL | https://chromewebstore.google.com/detail/zen-youtube-distraction-f/ibcpcdiajmfmkieocebkoiofgdbbecel |
| Opis | Removes feed and recommendations from YouTube so that you can have a distraction free focused session |
| Rozmiar pliku | 10.31 KB |
| Liczba instalacji | 6,000 |
| Aktualna Wersja | 2.0.0 |
| Ostatnia Aktualizacja | 2022-02-09 |
| Data Publikacji | 2021-10-24 |
| Ocena | 5.00/5 Łącznie 21 Oceny |
| Deweloper | Vishnu Gt |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/vishnugt/Zen-Youtube |
| Adres URL Strony Pomocy | https://github.com/vishnugt/Zen-Youtube |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Zen YouTube: Distraction free youtube",
"version": "2.0.0",
"manifest_version": 2,
"description": "Removes feed and recommendations from YouTube so that you can have a distraction free focused session",
"homepage_url": "https:\/\/github.com\/vishnugt\/Zen-Youtube",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"https:\/\/www.youtube.com\/*",
"storage"
],
"browser_action": {
"default_popup": "popup\/popup.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"inject.js"
],
"all_frames": true
}
]
} | |