Description from extension meta
Send youtube video id and title to local server
Image from store
Description from store
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');
})