Bat Video Downloader
Download videos from video websites.
Bat Video Downloaderとは何ですか?
Bat Video DownloaderはGit Catによって開発されたChromeの拡張機能で、その主な機能は「Download videos from video websites.」です。
拡張機能のスクリーンショット
Bat Video Downloader拡張機能のCRXファイルをダウンロード
Bat Video Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        Make it easier to download videos from video websites.
使從視頻網站下載視頻變得更加容易。                     拡張機能の基本情報
| 名前 |   |  
| ID | lomggjfjodglbaplaocaglpbpbokggab | 
| 公式URL | 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 | 
| Eメール | [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\/"
    ]
}  |  |