VideoFetcher

Extension to fetch Videos on Websites

Wat is VideoFetcher?

VideoFetcher is een Chrome-extensie ontwikkeld door DatLag, en de belangrijkste functie is "Extension to fetch Videos on Websites".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie VideoFetcher

Download VideoFetcher-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam VideoFetcher VideoFetcher
ID dnbaoglnoniehlakplahpeacfnpeedhb
Officiële URL https://chromewebstore.google.com/detail/videofetcher/dnbaoglnoniehlakplahpeacfnpeedhb
Beschrijving Extension to fetch Videos on Websites
Bestandsgrootte 72.12 KB
Aantal Installaties 83
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-03-24
Publicatiedatum 2021-03-23
Ontwikkelaar DatLag
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/DATL4G/VideoFetcher-Extension
Help Pagina-URL https://github.com/sponsors/DATL4G
URL van de Privacybeleid Pagina https://datlag-page.web.app/policies
Ondersteunde Talen 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": [
        ""
    ]
}