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 |
| Eメール | [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"
}
]
} | |