Youtube Saver
Send youtube video id and title to local server
What is Youtube Saver?
Youtube Saver is a Chrome extension developed by tomer953, and its main feature is "Send youtube video id and title to local server".
Extension Screenshots
Download Youtube Saver Extension CRX File
Download Youtube Saver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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'); })
Extension Basic Information
Name | |
ID | ohjocfogmmidmcnbahdfcedbgnegmjlk |
Official URL | https://chrome.google.com/webstore/detail/youtube-saver/ohjocfogmmidmcnbahdfcedbgnegmjlk |
Description | Send youtube video id and title to local server |
File Size | 35.59 KB |
Installation Count | 102 |
Current Version | 0.3.1 |
Last Updated | 2021-05-01 |
Publish Date | 2021-05-01 |
Developer | tomer953 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |