Reddit Comments for YouTube

Improve your YouTube experience by adding a Reddit comment section to the site!

O que é Reddit Comments for YouTube?

Reddit Comments for YouTube é uma extensão do Chrome desenvolvida por Taylor O'Neill, e sua principal característica é "Improve your YouTube experience by adding a Reddit comment section to the site!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Reddit Comments for YouTube

Baixe arquivos de extensão Reddit Comments for YouTube no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Reddit Comments for YouTube Reddit Comments for YouTube
ID oeehccpigolildhagkmlpofjplfajiam
URL Oficial https://chrome.google.com/webstore/detail/reddit-comments-for-youtu/oeehccpigolildhagkmlpofjplfajiam
Descrição Improve your YouTube experience by adding a Reddit comment section to the site!
Tamanho do Arquivo 22.91 KB
Contagem de Instalações 4,000
Versão Atual 2.5.3
Última Atualização 2022-03-10
Data de Publicação 2020-02-29
Classificação 4.71/5 Total de 21 Avaliações
Desenvolvedor Taylor O'Neill
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/tayloroneill/Reddit-Comments-for-YouTube
Idiomas Suportados 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}"
        }
    }
}