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
电子邮箱 [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": [
        ""
    ]
}