Youtube Likes Sidebar Button

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

Co to jest Youtube Likes Sidebar Button?

Youtube Likes Sidebar Button to rozszerzenie Chrome opracowane przez http://systemcluster.me, a jego główną funkcją jest „Adds a Liked Videos link to the library section of the Youtube sidebar.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Youtube Likes Sidebar Button

Pobierz pliki rozszerzeń Youtube Likes Sidebar Button 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Likes Sidebar Button Youtube Likes Sidebar Button
ID ahmdidmhhffpkhgfihmcinmlklpeipjm
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-likes-sidebar-but/ahmdidmhhffpkhgfihmcinmlklpeipjm
Opis Adds a Liked Videos link to the library section of the Youtube sidebar.
Rozmiar pliku 9.89 KB
Liczba instalacji 250
Aktualna Wersja 0.2.0
Ostatnia Aktualizacja 2018-07-28
Data Publikacji 2018-07-28
Ocena 4.17/5 Łącznie 6 Oceny
Deweloper http://systemcluster.me
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}