VideoFetcher

Extension to fetch Videos on Websites

What is VideoFetcher?

VideoFetcher is a Chrome extension developed by DatLag, and its main feature is "Extension to fetch Videos on Websites".

Extension Screenshots

screenshot

Download VideoFetcher Extension CRX File

Download VideoFetcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name VideoFetcher VideoFetcher
ID dnbaoglnoniehlakplahpeacfnpeedhb
Official URL https://chromewebstore.google.com/detail/videofetcher/dnbaoglnoniehlakplahpeacfnpeedhb
Description Extension to fetch Videos on Websites
File Size 72.12 KB
Installation Count 83
Current Version 1.0.0
Last Updated 2021-03-24
Publish Date 2021-03-23
Developer DatLag
Email [email protected]
Payment Type free
Extension Website https://github.com/DATL4G/VideoFetcher-Extension
Help Page URL https://github.com/sponsors/DATL4G
Privacy Policy Page URL https://datlag-page.web.app/policies
Supported Languages 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": [
        ""
    ]
}