YouTube Focus Mode

Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.

Cos'è YouTube Focus Mode?

YouTube Focus Mode è un'estensione di Chrome sviluppata da Saramsha Dotel, e la sua funzione principale è "Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YouTube Focus Mode

Scarica i file di estensione YouTube Focus Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This chrome extension allows you to select the type of videos that you want to see in your YouTube feed and blocks/hides all other videos that do not belong to the selected categories. Most of the extensions block the entire feed and hide all recommendations which might not be what you want while studying or focusing on learning a topic. By selectively blocking the distracting videos only, this extension allows you to focus on what's important and prevents you from getting distracted into the YouTube rabbithole.

The extension currently works in 3 scenarios within YouTube:
- Home Feed
- Search Results
- Video player and its accompanying recommendation column                    

Informazioni di Base sull'Estensione

Nome YouTube Focus Mode YouTube Focus Mode
ID jedeklblgiihonnldgldeagmbkhlblek
URL Ufficiale https://chromewebstore.google.com/detail/youtube-focus-mode/jedeklblgiihonnldgldeagmbkhlblek
Descrizione Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.
Dimensione del File 173 KB
Conteggio Installazioni 1,961
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-03-29
Data di Pubblicazione 2021-03-29
Valutazione 4.04/5 Totale 23 Valutazioni
Sviluppatore Saramsha Dotel
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://dotelsaramsha.com/
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Focus Mode",
    "description": "Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.",
    "manifest_version": 3,
    "version": "1.0.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}