VideoFetcher

Extension to fetch Videos on Websites

VideoFetcherとは何ですか?

VideoFetcherはDatLagによって開発されたChromeの拡張機能で、その主な機能は「Extension to fetch Videos on Websites」です。

拡張機能のスクリーンショット

screenshot

VideoFetcher拡張機能のCRXファイルをダウンロード

VideoFetcher拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 VideoFetcher VideoFetcher
ID dnbaoglnoniehlakplahpeacfnpeedhb
公式URL https://chromewebstore.google.com/detail/videofetcher/dnbaoglnoniehlakplahpeacfnpeedhb
説明 Extension to fetch Videos on Websites
ファイルサイズ 72.12 KB
インストール数 83
現在のバージョン 1.0.0
最終更新日 2021-03-24
公開日 2021-03-23
開発者 DatLag
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/DATL4G/VideoFetcher-Extension
ヘルプページのURL https://github.com/sponsors/DATL4G
プライバシーポリシーページのURL https://datlag-page.web.app/policies
対応言語 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": [
        ""
    ]
}