Youtube Likes / Views

Simple youtubeLikes / Views ratio ( percentage )

ما هو Youtube Likes / Views؟

Youtube Likes / Views هو إضافة Chrome تم تطويرها بواسطة cosmin.serboteiu، والميزة الرئيسية لها هي "Simple youtubeLikes / Views ratio ( percentage )".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Youtube Likes / Views

قم بتنزيل ملفات الامتداد Youtube Likes / Views بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        A simple extension that will display the ratio of likes / views as a percentage. This is quite useful in the current context in which there is no dislike counter.                    

معلومات أساسية عن التمديد

الاسم Youtube Likes / Views Youtube Likes / Views
ID hpllifddocjegddmfhpknnncbciekpfe
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-likes-views/hpllifddocjegddmfhpknnncbciekpfe
الوصف Simple youtubeLikes / Views ratio ( percentage )
حجم الملف 10.56 KB
عدد التثبيتات 99
النسخة الحالية 0.2
آخر تحديث 2021-11-23
تاريخ النشر 2021-11-23
تقييم 4.00/5 مجموع تقييمات 6
المطور cosmin.serboteiu
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Likes \/ Views",
    "description": "Simple youtubeLikes \/ Views ratio ( percentage )",
    "version": "0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ]
}