Wistia Video Downloader

Download all Wistia videos you see while browsing!

Wistia Video Downloader क्या है?

Wistia Video Downloader annabelle.crory द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download all Wistia videos you see while browsing!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Wistia Video Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is a completely free extension which will let you download any Wistia video on any page.

You can now choose the resolution to download. Do it by hovering over the icon, clicking the dropdown arrow and picking the resolution. If the dropdown does not appear, it means there is no resolution choice for this video.

If you have a video which is password-protected, you can still download it with the extension. Do it by entering the password in the extension popup (appears after clicking the extension icon *in the extensions toolbar*). Best if you remove the password after you have downloaded the video.

On some videos it is possible to download the subtitles (captions). You can do it by choosing 'Captions' in the resolutions menu. This functionality is still in beta stage.

If you found a site where this extension isn't working, please check the following:
1. Is the video you're trying to download in fact a Wistia video? Wistia videos usually allow you to right-click them and have an option 'About Wistia'.
2. Are you using a VPN? Sometimes using a VPN prevents the extension from working properly.
3. If you were using this extension to download Teachable videos, please note that that platform has recently switched away from Wistia, and so their videos can no longer be downloaded using this plugin.

If you're still having problems and the video can be publicly accessed, please share the link in the Support tab with a description of the problem and we will try to fix this.                    

एक्सटेंशन की मूल जानकारी

नाम Wistia Video Downloader Wistia Video Downloader
ID acbiaofoeebeinacmcknopaikmecdehl
आधिकारिक URL https://chromewebstore.google.com/detail/wistia-video-downloader/acbiaofoeebeinacmcknopaikmecdehl
विवरण Download all Wistia videos you see while browsing!
फ़ाइल का आकार 43.02 KB
स्थापना संख्या 151,504
वर्तमान संस्करण 1.4.2
अंतिम अपडेट 2023-07-21
प्रकाशन तिथि 2020-11-10
रेटिंग 4.55/5 कुल 727 रेटिंग्स
डेवलपर annabelle.crory
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://wistiaextension.com/privacy-policy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Download all Wistia videos you see while browsing!",
    "version": "1.4.2",
    "name": "Wistia Video Downloader",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "downloads",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "*.svg"
    ],
    "browser_action": {
        "default_popup": ".\/popup.html",
        "default_icon": {
            "16": "icon.png",
            "48": "icon.png"
        }
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}