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 |
| 官方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"
}
]
} | |