Youtube Relist

Lists youtube videos that are unlisted.

Co to jest Youtube Relist?

Youtube Relist to rozszerzenie Chrome opracowane przez http://fwra.me, a jego główną funkcją jest „Lists youtube videos that are unlisted.”.

Pobierz plik CRX rozszerzenia Youtube Relist

Pobierz pliki rozszerzeń Youtube Relist 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 is needed to help add unlisted videos to the database. Head to http://yr.fwra.me/ to search for unlisted videos.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Relist Youtube Relist
ID cjmpedjkkpihnongpkgkmjiemmpjhndi
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-relist/cjmpedjkkpihnongpkgkmjiemmpjhndi
Opis Lists youtube videos that are unlisted.
Rozmiar pliku 39.02 KB
Liczba instalacji 368
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-10-25
Data Publikacji 2017-10-25
Ocena 2.33/5 Łącznie 6 Oceny
Deweloper http://fwra.me
Typ Płatności free
Strona Rozszerzenia http://yr.fwra.me/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Relist",
    "description": "Lists youtube videos that are unlisted.",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Youtube Relist"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch?*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "videoScript.js"
            ]
        },
        {
            "matches": [
                "http:\/\/yr.fwra.me\/"
            ],
            "js": [
                "checker.js"
            ],
            "run_at": "document_end"
        }
    ]
}