Youtube Saver
Send youtube video id and title to local server
什麼是Youtube Saver?
Youtube Saver是由tomer953開發的Chrome擴展程式,該擴展的主要功能是“Send youtube video id and title to local server”。
擴展截圖
下載Youtube Saver擴展crx文件
下載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 |
| 官方網址 | 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"
}
]
} | |