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".

Снимки экрана расширения

screenshot

Скачать файл 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');
})                    

Основная информация о расширении

Название Youtube Saver Youtube Saver
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"
        }
    ]
}