Youtube Saver
Send youtube video id and title to local server
Youtube Saverคืออะไร?
Youtube Saver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tomer953 และคุณลักษณะหลักของมันคือ "Send youtube video id and title to local server"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Saver
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Saver ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" } ] } |