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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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