Youtube Saver
Send youtube video id and title to local server
Youtube Saver là gì?
Youtube Saver là một tiện ích mở rộng Chrome được phát triển bởi tomer953, và tính năng chính của nó là "Send youtube video id and title to local server".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube Saver
Tải xuống các tệp mở rộng Youtube Saver dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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'); })
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ohjocfogmmidmcnbahdfcedbgnegmjlk |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-saver/ohjocfogmmidmcnbahdfcedbgnegmjlk |
Mô tả | Send youtube video id and title to local server |
Kích Thước Tệp | 35.59 KB |
Số Lần Cài Đặt | 102 |
Phiên Bản Hiện Tại | 0.3.1 |
Cập Nhật Lần Cuối | 2021-05-01 |
Ngày Phát Hành | 2021-05-01 |
Nhà Phát Triển | tomer953 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |