View-Like Ratio for YouTube

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

Hvad er View-Like Ratio for YouTube?

View-Like Ratio for YouTube er en Chrome-udvidelse udviklet af flootah, og dens hovedfunktion er "Add display to the YouTube watch page to show a view-to-like ratio or percentage.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download View-Like Ratio for YouTube-udvidelses-CRX-fil

Download View-Like Ratio for YouTube-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
Officiel URL https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
Beskrivelse Add display to the YouTube watch page to show a view-to-like ratio or percentage.
Filstørrelse 16.66 KB
Antal Installationer 146
Nuværende Version 0.4
Senest Opdateret 2022-12-07
Udgivelsesdato 2021-12-01
Bedømmelse 3.29/5 Samlet 7 Bedømmelser
Udvikler flootah
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://flootah.dev/about/privacy
Understøttede Sprog 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": [
                ""
            ]
        }
    ]
}