Youtube Saver
Send youtube video id and title to local server
Wat is Youtube Saver?
Youtube Saver is een Chrome-extensie ontwikkeld door tomer953, en de belangrijkste functie is "Send youtube video id and title to local server".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube Saver
Download Youtube Saver-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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'); })
Basisinformatie over de Extensie
Naam | |
ID | ohjocfogmmidmcnbahdfcedbgnegmjlk |
Officiële URL | https://chrome.google.com/webstore/detail/youtube-saver/ohjocfogmmidmcnbahdfcedbgnegmjlk |
Beschrijving | Send youtube video id and title to local server |
Bestandsgrootte | 35.59 KB |
Aantal Installaties | 102 |
Huidige Versie | 0.3.1 |
Laatst Bijgewerkt | 2021-05-01 |
Publicatiedatum | 2021-05-01 |
Ontwikkelaar | tomer953 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |