Youtube like to view ratio

Displays the percentage of likes to views, more popular videos have a higher ratio.

Was ist Youtube like to view ratio?

Youtube like to view ratio ist eine Chrome-Erweiterung, die von @amnrst entwickelt wurde, und ihr Hauptmerkmal ist "Displays the percentage of likes to views, more popular videos have a higher ratio.".

Erweiterungsscreenshots

screenshot

Youtube like to view ratio-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube like to view ratio-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Youtube recently removed the dislike to like ratio.  
A video with 1M views and 100 likes for example has a low ratio (0.1%), and probably means the video is not popular.

Any video with a like to view ratio greater than 2 or 3 percent, should be all right.
However the correct ratio depends on the type of content you are watching.                    

Grundlegende Informationen zur Erweiterung

Name Youtube like to view ratio Youtube like to view ratio
ID pjkjdnlpbfcociacjalpklkpebephmha
Offizielle URL https://chromewebstore.google.com/detail/youtube-like-to-view-rati/pjkjdnlpbfcociacjalpklkpebephmha
Beschreibung Displays the percentage of likes to views, more popular videos have a higher ratio.
Dateigröße 328 KB
Installationsanzahl 728
Aktuelle Version 0.0.1.0
Letztes Update 2022-11-02
Veröffentlichungsdatum 2021-12-04
Bewertung 3.58/5 Insgesamt 19 Bewertungen
Entwickler @amnrst
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/amnrst/youtube-like-to-view-ratio
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube like to view ratio",
    "description": "Displays the percentage of likes to views, more popular videos have a higher ratio.",
    "version": "0.0.1.0",
    "manifest_version": 2,
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "homepage_url": "https:\/\/github.com\/amnrst\/youtube-like-to-view-ratio",
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle"
        }
    ]
}