Youtube Saver
Send youtube video id and title to local server
Youtube Saver क्या है?
Youtube Saver tomer953 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Send youtube video id and title to local server"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Saver एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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'); })
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ohjocfogmmidmcnbahdfcedbgnegmjlk |
आधिकारिक URL | https://chrome.google.com/webstore/detail/youtube-saver/ohjocfogmmidmcnbahdfcedbgnegmjlk |
विवरण | Send youtube video id and title to local server |
फ़ाइल का आकार | 35.59 KB |
स्थापना संख्या | 102 |
वर्तमान संस्करण | 0.3.1 |
अंतिम अपडेट | 2021-05-01 |
प्रकाशन तिथि | 2021-05-01 |
डेवलपर | tomer953 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } ] } |