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 с друзьями, чтобы легко установить расширения Chrome.

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

                        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"
    ]
}