View-Like Ratio for YouTube

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

Co je View-Like Ratio for YouTube?

View-Like Ratio for YouTube je rozšíření Chrome vyvinuté flootah, a jeho hlavní funkcí je „Add display to the YouTube watch page to show a view-to-like ratio or percentage.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření View-Like Ratio for YouTube

Stáhněte si soubory rozšíření View-Like Ratio for YouTube ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
Oficiální URL https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
Popis Add display to the YouTube watch page to show a view-to-like ratio or percentage.
Velikost souboru 16.66 KB
Počet instalací 146
Aktuální Verze 0.4
Poslední Aktualizace 2022-12-07
Datum Vydání 2021-12-01
Hodnocení 3.29/5 Celkem 7 Hodnocení
Vývojář flootah
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://flootah.dev/about/privacy
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}