Youtube like to view ratio
Displays the percentage of likes to views, more popular videos have a higher ratio.
ما هو Youtube like to view ratio؟
Youtube like to view ratio هو إضافة Chrome تم تطويرها بواسطة @amnrst، والميزة الرئيسية لها هي "Displays the percentage of likes to views, more popular videos have a higher ratio.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube like to view ratio
قم بتنزيل ملفات الامتداد Youtube like to view ratio بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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. معلومات أساسية عن التمديد
| الاسم | |
| ID | pjkjdnlpbfcociacjalpklkpebephmha |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-like-to-view-rati/pjkjdnlpbfcociacjalpklkpebephmha |
| الوصف | Displays the percentage of likes to views, more popular videos have a higher ratio. |
| حجم الملف | 328 KB |
| عدد التثبيتات | 728 |
| النسخة الحالية | 0.0.1.0 |
| آخر تحديث | 2022-11-02 |
| تاريخ النشر | 2021-12-04 |
| تقييم | 3.58/5 مجموع تقييمات 19 |
| المطور | @amnrst |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/amnrst/youtube-like-to-view-ratio |
| اللغات المدعومة | 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"
}
]
} | |