View-Like Ratio for YouTube

Add display to the YouTube watch page to show a view-to-like ratio or percentage.

O que é View-Like Ratio for YouTube?

View-Like Ratio for YouTube é uma extensão do Chrome desenvolvida por flootah, e sua principal característica é "Add display to the YouTube watch page to show a view-to-like ratio or percentage.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão View-Like Ratio for YouTube

Baixe arquivos de extensão View-Like Ratio 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

                        With YouTube dislikes on the way out, there needs to be an alternative way to judge a video's quality. This extension brings a solution by showing how often viewers decide to like a video. This metric can be useful when comparing videos of similar content or by the same creator.                    

Informações Básicas da Extensão

Nome View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
URL Oficial https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
Descrição Add display to the YouTube watch page to show a view-to-like ratio or percentage.
Tamanho do Arquivo 16.66 KB
Contagem de Instalações 146
Versão Atual 0.4
Última Atualização 2022-12-07
Data de Publicação 2021-12-01
Classificação 3.29/5 Total de 7 Avaliações
Desenvolvedor flootah
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://flootah.dev/about/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "View-Like Ratio for YouTube",
    "description": "Add display to the YouTube watch page to show a view-to-like ratio or percentage.",
    "version": "0.4",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "viewlike.css"
            ],
            "js": [
                "viewlike.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "viewlike128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "viewlike.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}