View-Like Ratio for YouTube

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

Cos'è View-Like Ratio for YouTube?

View-Like Ratio for YouTube è un'estensione di Chrome sviluppata da flootah, e la sua funzione principale è "Add display to the YouTube watch page to show a view-to-like ratio or percentage.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione View-Like Ratio for YouTube

Scarica i file di estensione View-Like Ratio 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

                        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.                    

Informazioni di Base sull'Estensione

Nome View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
URL Ufficiale https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
Descrizione Add display to the YouTube watch page to show a view-to-like ratio or percentage.
Dimensione del File 16.66 KB
Conteggio Installazioni 146
Versione Corrente 0.4
Ultimo Aggiornamento 2022-12-07
Data di Pubblicazione 2021-12-01
Valutazione 3.29/5 Totale 7 Valutazioni
Sviluppatore flootah
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://flootah.dev/about/privacy
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}