YouTube++

This extension shows the publishing or uploading date of related youtube videos in sidebar.

ما هو YouTube++؟

YouTube++ هو إضافة Chrome تم تطويرها بواسطة divyum، والميزة الرئيسية لها هي "This extension shows the publishing or uploading date of related youtube videos in sidebar.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة YouTube++

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

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

                        Ever wondered if you could get the published date of related videos without even opening the videos in youtube, here is an extension which will solve this for you.                    

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

الاسم YouTube++ YouTube++
ID mbaflkdlneldejanggphlhcepncjfaco
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube++/mbaflkdlneldejanggphlhcepncjfaco
الوصف This extension shows the publishing or uploading date of related youtube videos in sidebar.
حجم الملف 229 KB
عدد التثبيتات 2,716
النسخة الحالية 2.3.2
آخر تحديث 2019-11-12
تاريخ النشر 2019-11-11
تقييم 3.77/5 مجموع تقييمات 52
المطور divyum
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube++",
    "short_name": "YTD",
    "description": "This extension shows the publishing or uploading date of related youtube videos in sidebar.",
    "version": "2.3.2",
    "icons": {
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "image\/loader_gif.gif"
    ]
}