Youtube Saver icon

Youtube Saver

Extension Delisted

This extension is no longer available in the official store. Delisted on 2025-09-15.

Extension Actions

CRX ID
ohjocfogmmidmcnbahdfcedbgnegmjlk
Status
  • Minor Policy Violation
  • Removed Long Ago
Description from extension meta

Send youtube video id and title to local server

Image from store
Youtube Saver
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');
})