Bat Video Downloader

Download videos from video websites.

Was ist Bat Video Downloader?

Bat Video Downloader ist eine Chrome-Erweiterung, die von Git Cat entwickelt wurde, und ihr Hauptmerkmal ist "Download videos from video websites.".

Erweiterungsscreenshots

screenshot
screenshot

Bat Video Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bat Video Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Bat Video Downloader Bat Video Downloader
ID lomggjfjodglbaplaocaglpbpbokggab
Offizielle URL https://chromewebstore.google.com/detail/bat-video-downloader/lomggjfjodglbaplaocaglpbpbokggab
Beschreibung Download videos from video websites.
Dateigröße 1.21 MB
Installationsanzahl 50
Aktuelle Version 0.0.1
Letztes Update 2022-05-27
Veröffentlichungsdatum 2022-05-27
Entwickler Git Cat
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/"
    ]
}