VideoFetcher

Extension to fetch Videos on Websites

Cos'è VideoFetcher?

VideoFetcher è un'estensione di Chrome sviluppata da DatLag, e la sua funzione principale è "Extension to fetch Videos on Websites".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione VideoFetcher

Scarica i file di estensione VideoFetcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome VideoFetcher VideoFetcher
ID dnbaoglnoniehlakplahpeacfnpeedhb
URL Ufficiale https://chromewebstore.google.com/detail/videofetcher/dnbaoglnoniehlakplahpeacfnpeedhb
Descrizione Extension to fetch Videos on Websites
Dimensione del File 72.12 KB
Conteggio Installazioni 83
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-03-24
Data di Pubblicazione 2021-03-23
Sviluppatore DatLag
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/DATL4G/VideoFetcher-Extension
URL della Pagina di Aiuto https://github.com/sponsors/DATL4G
URL della Pagina della Politica sulla Privacy https://datlag-page.web.app/policies
Lingue Supportate 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": [
        ""
    ]
}