Utip for Youtube

Automatically open a popup when you like a youtube video with a utip link in description.

Что такое Utip for Youtube?

Utip for Youtube - это расширение Chrome, разработанное jorand, и его основная функция - "Automatically open a popup when you like a youtube video with a utip link in description.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Utip for Youtube

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

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

                        Automatically display a easily visible button under the youtube video if a utip link is in the description and can also open the utip link when you hit the like button of the video.

♥ Made with love by a subscriber !

New features :
- Possibility to choose to activate the display of the popup click on the thumbs up
- Now support old YouTube layout
- Compatible with Iridium extension
- Fix bug

Tell me if you have any issues or ideas for improvements.                    

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

Название Utip for Youtube Utip for Youtube
ID dbncpgcmohkdhaakdachojjgfcgcfnna
Официальный URL https://chrome.google.com/webstore/detail/utip-for-youtube/dbncpgcmohkdhaakdachojjgfcgcfnna
Описание Automatically open a popup when you like a youtube video with a utip link in description.
Размер файла 52.21 KB
Количество установок 65
Текущая Версия 0.7.5
Последнее Обновление 2019-04-26
Дата публикации 2019-04-26
Рейтинг 5.00/5 Всего 3 оценок
Разработчик jorand
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Jorand/chrome-utip-for-youtube
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Utip for Youtube",
    "version": "0.7.5",
    "description": "Automatically open a popup when you like a youtube video with a utip link in description.",
    "icons": {
        "128": "icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "author": "https:\/\/github.com\/Jorand"
}