videoSiphon

This Google Chrome extension allows you to download Vimeo, Wistia and Facebook videos for better offline viewing

Was ist videoSiphon?

videoSiphon ist eine Chrome-Erweiterung, die von Kankoz Labs entwickelt wurde, und ihr Hauptmerkmal ist "This Google Chrome extension allows you to download Vimeo, Wistia and Facebook videos for better offline viewing".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

videoSiphon-Erweiterungs-CRX-Datei herunterladen

Laden Sie videoSiphon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension allows you to download videos from Facebook, Vimeo and Wistia only in ONE CLICK                    

Grundlegende Informationen zur Erweiterung

Name videoSiphon videoSiphon
ID okagjmlnpigofddkfkekkknifmpkfgop
Offizielle URL https://chromewebstore.google.com/detail/videosiphon/okagjmlnpigofddkfkekkknifmpkfgop
Beschreibung This Google Chrome extension allows you to download Vimeo, Wistia and Facebook videos for better offline viewing
Dateigröße 834 KB
Installationsanzahl 102
Aktuelle Version 1.1.8
Letztes Update 2021-09-22
Veröffentlichungsdatum 2020-06-25
Bewertung 2.00/5 Insgesamt 4 Bewertungen
Entwickler Kankoz Labs
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://videosiphon.com
Hilfeseite URL https://docs.videosiphon.com/
URL der Datenschutzrichtlinien-Seite https://kankoz.com/privacy-policy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "videoSiphon",
    "short_name": "videoSiphon",
    "version": "1.1.8",
    "description": "This Google Chrome extension allows you to download Vimeo, Wistia and Facebook videos for better offline viewing",
    "background": {
        "scripts": [
            "\/assets\/js\/jquery-3.4.1.min.js",
            "config.js",
            "assets\/js\/background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "browser_style": false,
        "default_icon": {
            "128": "icons\/icon128.png"
        },
        "default_title": "VideoSiphon",
        "default_popup": "\/index.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com; object-src 'self'",
    "permissions": [
        "tabs",
        "storage",
        "downloads",
        "cookies",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "assets\/js\/jquery-3.4.1.min.js",
                "assets\/js\/content.js"
            ],
            "all_frames": true,
            "css": [
                "\/assets\/css\/content.css"
            ]
        }
    ]
}