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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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": [
                ""
            ]
        }
    ]
}