BehindTheLogs_VIDEOSYOUT

I was tired to open a new youtube tab to find a song when I'm already listen one

Что такое BehindTheLogs_VIDEOSYOUT?

BehindTheLogs_VIDEOSYOUT - это расширение Chrome, разработанное Unknown, и его основная функция - "I was tired to open a new youtube tab to find a song when I'm already listen one".

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

screenshot

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

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

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

                        This extension allows users to search videos on Youtube from any website, open a new tab to watch the video or go to a tool for recording (Yout).

Why?. By simple annoyance, I was tired of having to find videos of youtube and redirect the whole page every time I wanted to see a new video or every time I wanted to record them in MP3 or MP4 format.

Just do that ?. Yes, the goal was not to make something complex; I was just fun developing it.                    

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

Название BehindTheLogs_VIDEOSYOUT BehindTheLogs_VIDEOSYOUT
ID nejcbljpmooebmhacnadlbcfphgbhcff
Официальный URL https://chromewebstore.google.com/detail/behindthelogsvideosyout/nejcbljpmooebmhacnadlbcfphgbhcff
Описание I was tired to open a new youtube tab to find a song when I'm already listen one
Размер файла 1008 KB
Количество установок 434
Текущая Версия 1.0
Последнее Обновление 2016-08-03
Дата публикации 2016-08-02
Рейтинг 1.00/5 Всего 7 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://www.behindthelogs.com
URL страницы помощи https://www.behindthelogs.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BehindTheLogs_VIDEOSYOUT",
    "description": "I was tired to open a new youtube tab to find a song when I'm already listen one",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "styles\/main.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "extension.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Find Youtube Videos",
        "default_icon": "images\/logo.png",
        "default_popup": "index.html"
    },
    "permissions": [
        "tabs",
        "https:\/\/www.googleapis.com\/*"
    ]
}