Bat Video Downloader

Download videos from video websites.

什麼是Bat Video Downloader?

Bat Video Downloader是由Git Cat開發的Chrome擴展程式,該擴展的主要功能是“Download videos from video websites.”。

擴展截圖

screenshot
screenshot

下載Bat Video Downloader擴展crx文件

下載Bat Video Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Bat Video Downloader Bat Video Downloader
ID lomggjfjodglbaplaocaglpbpbokggab
官方網址 https://chromewebstore.google.com/detail/bat-video-downloader/lomggjfjodglbaplaocaglpbpbokggab
簡介 Download videos from video websites.
檔案大小 1.21 MB
安裝次數 50
目前版本 0.0.1
更新時間 2022-05-27
上架時間 2022-05-27
開發者 Git Cat
電子郵箱 [email protected]
付費類型 free
支援的語言 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\/"
    ]
}