Focused Youtube

Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube

Cos'è Focused Youtube?

Focused Youtube è un'estensione di Chrome sviluppata da makaroni4, e la sua funzione principale è "Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Focused Youtube

Scarica i file di estensione Focused Youtube 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 is an open-source extension that changes homepage of Youtube (only search bar) and drops recommendations/comments from other pages. 

Extension requires access to Youtube website to change its outlook.

Extension icon opens a popup with an option to show/hide the comments section of a video (to check timestamps in comments, for example).

Enjoy <3

Important: the extension doesn't collect any data about Youtube usage.                    

Informazioni di Base sull'Estensione

Nome Focused Youtube Focused Youtube
ID nfghbmabdoakhobmimnjkamfdnpfammn
URL Ufficiale https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn
Descrizione Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
Dimensione del File 170 KB
Conteggio Installazioni 4,232
Versione Corrente 1.12
Ultimo Aggiornamento 2024-01-27
Data di Pubblicazione 2019-01-06
Valutazione 4.88/5 Totale 72 Valutazioni
Sviluppatore makaroni4
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/makaroni4/focused_youtube
URL della Pagina di Aiuto https://github.com/makaroni4/focused_youtube/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Focused Youtube",
    "description": "Open source extension that removes comments\/recommendations from Youtube: https:\/\/github.com\/makaroni4\/focused_youtube",
    "version": "1.12",
    "author": "Anatoli Makarevich",
    "icons": {
        "128": "extension_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/m.youtube.com\/*"
            ],
            "js": [
                "assets\/extension.js"
            ],
            "css": [
                "assets\/extension.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/www.youtube.com\/*",
        "https:\/\/m.youtube.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/Roboto-Regular.ttf",
                "assets\/popup.js",
                "assets\/popup.css",
                "images\/search_icon.svg",
                "images\/youtube_logo.png",
                "images\/search_icon_dark.svg",
                "images\/youtube_logo_dark.png",
                "images\/extension_icon.png"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/m.youtube.com\/*"
            ]
        }
    ]
}