VideoFetcher

Extension to fetch Videos on Websites

VideoFetcher là gì?

VideoFetcher là một tiện ích mở rộng Chrome được phát triển bởi DatLag, và tính năng chính của nó là "Extension to fetch Videos on Websites".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng VideoFetcher

Tải xuống các tệp mở rộng VideoFetcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên VideoFetcher VideoFetcher
ID dnbaoglnoniehlakplahpeacfnpeedhb
URL Chính Thức https://chromewebstore.google.com/detail/videofetcher/dnbaoglnoniehlakplahpeacfnpeedhb
Mô tả Extension to fetch Videos on Websites
Kích Thước Tệp 72.12 KB
Số Lần Cài Đặt 83
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-03-24
Ngày Phát Hành 2021-03-23
Nhà Phát Triển DatLag
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/DATL4G/VideoFetcher-Extension
URL Trang Trợ Giúp https://github.com/sponsors/DATL4G
URL Trang Chính Sách Bảo Mật https://datlag-page.web.app/policies
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}