Bat Video Downloader

Download videos from video websites.

Bat Video Downloader là gì?

Bat Video Downloader là một tiện ích mở rộng Chrome được phát triển bởi Git Cat, và tính năng chính của nó là "Download videos from video websites.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Bat Video Downloader 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

                        Make it easier to download videos from video websites.
使從視頻網站下載視頻變得更加容易。                    

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

Tên Bat Video Downloader Bat Video Downloader
ID lomggjfjodglbaplaocaglpbpbokggab
URL Chính Thức https://chromewebstore.google.com/detail/bat-video-downloader/lomggjfjodglbaplaocaglpbpbokggab
Mô tả Download videos from video websites.
Kích Thước Tệp 1.21 MB
Số Lần Cài Đặt 50
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2022-05-27
Ngày Phát Hành 2022-05-27
Nhà Phát Triển Git Cat
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bat Video Downloader",
    "version": "0.0.1",
    "manifest_version": 3,
    "description": "Download videos from video websites.",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "16": "icons\/icon-16.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png"
        }
    },
    "background": {
        "service_worker": "service-worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.iqiyi.com\/*.html*"
            ],
            "match_about_blank": false,
            "all_frames": false,
            "run_at": "document_idle",
            "js": [
                "iqiyi-content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/v.qq.com\/x\/cover\/*.html*",
                "https:\/\/v.qq.com\/x\/page\/*.html*"
            ],
            "match_about_blank": false,
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "v-qq-content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.bilibili.com\/video\/*",
                "https:\/\/www.bilibili.com\/bangumi\/play\/*"
            ],
            "match_about_blank": false,
            "all_frames": false,
            "run_at": "document_idle",
            "js": [
                "bilibili-content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "match_about_blank": false,
            "all_frames": false,
            "run_at": "document_idle",
            "js": [
                "youtube-content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "v-qq-document-script.js"
            ],
            "matches": [
                "https:\/\/v.qq.com\/*"
            ]
        },
        {
            "resources": [
                "youtube-document-script.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "permissions": [
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/*.iqiyi.com\/"
    ]
}