View-Like Ratio for YouTube

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

Что такое View-Like Ratio for YouTube?

View-Like Ratio for YouTube - это расширение Chrome, разработанное flootah, и его основная функция - "Add display to the YouTube watch page to show a view-to-like ratio or percentage.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения View-Like Ratio for YouTube

Скачайте файлы расширений View-Like Ratio for YouTube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
Официальный URL https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
Описание Add display to the YouTube watch page to show a view-to-like ratio or percentage.
Размер файла 16.66 KB
Количество установок 146
Текущая Версия 0.4
Последнее Обновление 2022-12-07
Дата публикации 2021-12-01
Рейтинг 3.29/5 Всего 7 оценок
Разработчик flootah
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://flootah.dev/about/privacy
Поддерживаемые языки 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": [
                ""
            ]
        }
    ]
}