Youtube Saver

Send youtube video id and title to local server

Co to jest Youtube Saver?

Youtube Saver to rozszerzenie Chrome opracowane przez tomer953, a jego główną funkcją jest „Send youtube video id and title to local server”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Youtube Saver

Pobierz pliki rozszerzeń Youtube Saver 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 addon adds a simple download icon in every youtube video thumbnail,
when clicked, a get request will be send to your local running server in port 8080.

this allows you to process stuff on your local machine.

ie using express.js:

app.get('/save', (req, res) => {
    console.log('got video', req.query.id, decodeURIComponent(req.query.title))
  // your code
  res.send('done');
})                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Saver Youtube Saver
ID ohjocfogmmidmcnbahdfcedbgnegmjlk
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-saver/ohjocfogmmidmcnbahdfcedbgnegmjlk
Opis Send youtube video id and title to local server
Rozmiar pliku 35.59 KB
Liczba instalacji 102
Aktualna Wersja 0.3.1
Ostatnia Aktualizacja 2021-05-01
Data Publikacji 2021-05-01
Deweloper tomer953
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 Saver",
    "description": "Send youtube video id and title to local server",
    "version": "0.3.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "scripts\/jquery-3.6.0.min.js",
                "content.js"
            ],
            "css": [
                "styles\/styles.css"
            ],
            "run_at": "document_start"
        }
    ]
}