VideoFetcher

Extension to fetch Videos on Websites

ما هو VideoFetcher؟

VideoFetcher هو إضافة Chrome تم تطويرها بواسطة DatLag، والميزة الرئيسية لها هي "Extension to fetch Videos on Websites".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة VideoFetcher

قم بتنزيل ملفات الامتداد VideoFetcher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension is an Open-Source VideoFetcher.

It checks video players on the respective page for available videos and checks request headers for videos to ensure that all videos are found, because some sites try to prevent this from conventional video downloaders.

This extension does not support YouTube videos!

GitHub: https://github.com/DATL4G/VideoFetcher-Extension                    

معلومات أساسية عن التمديد

الاسم VideoFetcher VideoFetcher
ID dnbaoglnoniehlakplahpeacfnpeedhb
عنوان URL الرسمي https://chromewebstore.google.com/detail/videofetcher/dnbaoglnoniehlakplahpeacfnpeedhb
الوصف Extension to fetch Videos on Websites
حجم الملف 72.12 KB
عدد التثبيتات 83
النسخة الحالية 1.0.0
آخر تحديث 2021-03-24
تاريخ النشر 2021-03-23
المطور DatLag
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/DATL4G/VideoFetcher-Extension
عنوان صفحة المساعدة https://github.com/sponsors/DATL4G
عنوان صفحة سياسة الخصوصية https://datlag-page.web.app/policies
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "VideoFetcher",
    "description": "Extension to fetch Videos on Websites",
    "version": "1.0.0",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor.js",
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "activeTab",
        "",
        "webRequest",
        "background",
        "tabs"
    ],
    "web_accessible_resources": [
        ""
    ]
}