VideoFetcher

Extension to fetch Videos on Websites

VideoFetcherคืออะไร?

VideoFetcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DatLag และคุณลักษณะหลักของมันคือ "Extension to fetch Videos on Websites"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VideoFetcher

ดาวน์โหลดไฟล์ส่วนขยาย VideoFetcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ https://github.com/sponsors/DATL4G
URL หน้านโยบายความเป็นส่วนตัว 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": [
        ""
    ]
}