Youtube Saver

Send youtube video id and title to local server

Cos'è Youtube Saver?

Youtube Saver è un'estensione di Chrome sviluppata da tomer953, e la sua funzione principale è "Send youtube video id and title to local server".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Youtube Saver

Scarica i file di estensione Youtube Saver in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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');
})                    

Informazioni di Base sull'Estensione

Nome Youtube Saver Youtube Saver
ID ohjocfogmmidmcnbahdfcedbgnegmjlk
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-saver/ohjocfogmmidmcnbahdfcedbgnegmjlk
Descrizione Send youtube video id and title to local server
Dimensione del File 35.59 KB
Conteggio Installazioni 102
Versione Corrente 0.3.1
Ultimo Aggiornamento 2021-05-01
Data di Pubblicazione 2021-05-01
Sviluppatore tomer953
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}