Youtube Likes Sidebar Button

Adds a Liked Videos link to the library section of the Youtube sidebar.

Что такое Youtube Likes Sidebar Button?

Youtube Likes Sidebar Button - это расширение Chrome, разработанное http://systemcluster.me, и его основная функция - "Adds a Liked Videos link to the library section of the Youtube sidebar.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Youtube Likes Sidebar Button

Скачайте файлы расширений Youtube Likes Sidebar Button в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Adds a Liked Videos link to the library section of the Youtube sidebar.
Integrates seamlessly with the existing sidebar links.

2017-08-30: Updated to support the new Polymer Youtube layout.                    

Основная информация о расширении

Название Youtube Likes Sidebar Button Youtube Likes Sidebar Button
ID ahmdidmhhffpkhgfihmcinmlklpeipjm
Официальный URL https://chrome.google.com/webstore/detail/youtube-likes-sidebar-but/ahmdidmhhffpkhgfihmcinmlklpeipjm
Описание Adds a Liked Videos link to the library section of the Youtube sidebar.
Размер файла 9.89 KB
Количество установок 250
Текущая Версия 0.2.0
Последнее Обновление 2018-07-28
Дата публикации 2018-07-28
Рейтинг 4.17/5 Всего 6 оценок
Разработчик http://systemcluster.me
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Likes Sidebar Button",
    "short_name": "Youtube Likes Sidebar Button",
    "description": "Adds a Liked Videos link to the library section of the Youtube sidebar.",
    "version": "0.2.0",
    "author": "Christian Sdunek",
    "icons": {
        "16": "chrome\/skin\/icon16.png",
        "48": "chrome\/skin\/icon48.png",
        "96": "chrome\/skin\/icon96.png",
        "128": "chrome\/skin\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "inject.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ]
}