Reddit Comments for YouTube
Improve your YouTube experience by adding a Reddit comment section to the site!
Cos'è Reddit Comments for YouTube?
Reddit Comments for YouTube è un'estensione di Chrome sviluppata da Taylor O'Neill, e la sua funzione principale è "Improve your YouTube experience by adding a Reddit comment section to the site!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Reddit Comments for YouTube
Scarica i file di estensione Reddit Comments for 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 extension: - Works with the new YouTube layout - Is actively being updated - Supports voting and commenting - Allows you to blacklist subreddits - Is open source This is a fork of Lucien Maloney's extension for Chromium-based browsers and is not affiliated in any way with Reddit Inc. or YouTube, LLC.
Informazioni di Base sull'Estensione
Nome | |
ID | oeehccpigolildhagkmlpofjplfajiam |
URL Ufficiale | https://chrome.google.com/webstore/detail/reddit-comments-for-youtu/oeehccpigolildhagkmlpofjplfajiam |
Descrizione | Improve your YouTube experience by adding a Reddit comment section to the site! |
Dimensione del File | 22.91 KB |
Conteggio Installazioni | 4,000 |
Versione Corrente | 2.5.3 |
Ultimo Aggiornamento | 2022-03-10 |
Data di Pubblicazione | 2020-02-29 |
Valutazione | 4.71/5 Totale 21 Valutazioni |
Sviluppatore | Taylor O'Neill |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/tayloroneill/Reddit-Comments-for-YouTube |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extensionName__", "description": "__MSG_extensionDescription__", "default_locale": "en", "version": "2.5.3", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/www.youtube.com\/", "https:\/\/api.reddit.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "index.js" ], "css": [ "thread.css" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "icons": { "16": "16px_icon.png", "48": "48px_icon.png", "128": "128px_icon.png" }, "action": { "default_popup": "popup\/popup.html" }, "options_ui": { "page": "popup\/popup.html" }, "browser_specific_settings": { "gecko": { "id": "{cc2cbbd2-14d9-4260-b78d-ed166ca4e6cc}" } } } |