BehindTheLogs_VIDEOSYOUT

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

Co to jest BehindTheLogs_VIDEOSYOUT?

BehindTheLogs_VIDEOSYOUT to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „I was tired to open a new youtube tab to find a song when I'm already listen one”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BehindTheLogs_VIDEOSYOUT

Pobierz pliki rozszerzeń BehindTheLogs_VIDEOSYOUT w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa BehindTheLogs_VIDEOSYOUT BehindTheLogs_VIDEOSYOUT
ID nejcbljpmooebmhacnadlbcfphgbhcff
Oficjalny URL https://chromewebstore.google.com/detail/behindthelogsvideosyout/nejcbljpmooebmhacnadlbcfphgbhcff
Opis I was tired to open a new youtube tab to find a song when I'm already listen one
Rozmiar pliku 1008 KB
Liczba instalacji 434
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-08-03
Data Publikacji 2016-08-02
Ocena 1.00/5 Łącznie 7 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://www.behindthelogs.com
Adres URL Strony Pomocy https://www.behindthelogs.com
Obsługiwane Języki 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\/*"
    ]
}