View-Like Ratio for YouTube

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

Wat is View-Like Ratio for YouTube?

View-Like Ratio for YouTube is een Chrome-extensie ontwikkeld door flootah, en de belangrijkste functie is "Add display to the YouTube watch page to show a view-to-like ratio or percentage.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie View-Like Ratio for YouTube

Download View-Like Ratio for YouTube-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
Officiële URL https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
Beschrijving Add display to the YouTube watch page to show a view-to-like ratio or percentage.
Bestandsgrootte 16.66 KB
Aantal Installaties 146
Huidige Versie 0.4
Laatst Bijgewerkt 2022-12-07
Publicatiedatum 2021-12-01
Beoordeling 3.29/5 Totaal 7 Beoordelingen
Ontwikkelaar flootah
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://flootah.dev/about/privacy
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}